(3DS) edits.

This commit is contained in:
aliaspider 2015-11-24 11:05:31 +01:00
parent f22d26f881
commit e61616fd5d
2 changed files with 1 additions and 2 deletions

View File

@ -13,6 +13,7 @@ void dump_result_value(Result val);
#endif
#define DEBUG_HOLD() do{printf("%s@%s:%d.\n",__FUNCTION__, __FILE__, __LINE__);fflush(stdout);wait_for_input();}while(0)
#define DEBUG_LINE() do{printf("%s:%d.\n",__FUNCTION__, __LINE__);fflush(stdout);}while(0)
#define DEBUG_STR(X) printf( "%s: %s\n", #X, (char*)(X))
#define DEBUG_VAR(X) printf( "%-20s: 0x%08X\n", #X, (u32)(X))
#define DEBUG_VAR64(X) printf( #X"\r\t\t\t\t : 0x%016llX\n", (u64)(X))

View File

@ -131,7 +131,6 @@ static void frontend_ctr_deinit(void *data)
}
cfguExit();
// exitCfgu();
ndspExit();
csndExit();
gfxExit();
@ -225,7 +224,6 @@ static void frontend_ctr_init(void *data)
if(ndspInit() != 0)
*dsp_audio_driver = audio_null;
cfguInit();
// initCfgu();
#endif
}