mirror of
https://github.com/smealum/dscraft.git
synced 2025-06-19 07:15:35 -04:00
26 lines
363 B
C
26 lines
363 B
C
#include "common/general.h"
|
|
|
|
void DS_Debug(char* string, ...)
|
|
{
|
|
//va_list varg;
|
|
//NOGBA(string);
|
|
// iprintf(string);
|
|
}
|
|
|
|
void DS_DebugPause(void)
|
|
{
|
|
DS_Debug("\n..Touch the screen to continue..\n");
|
|
scanKeys();
|
|
while(!(keysDown() & KEY_TOUCH))scanKeys();
|
|
}
|
|
|
|
size_t DS_UsedMem(void)
|
|
{
|
|
return getMemUsed();
|
|
}
|
|
|
|
size_t DS_FreeMem(void)
|
|
{
|
|
return getMemFree();
|
|
}
|