Make info prints debug only

This commit is contained in:
CrashOveride95
2021-05-13 16:20:52 -04:00
committed by GitHub
parent 9570c184e2
commit 1d447b0dbd

View File

@@ -319,11 +319,13 @@ void thread3_main(UNUSED void *arg) {
crash_screen_init();
#endif
#ifdef DEBUG
osSyncPrintf("Super Mario 64\n");
osSyncPrintf("Built by: %s\n", __username__);
osSyncPrintf("Date : %s\n", __datetime__);
osSyncPrintf("Compiler: %s\n", __compiler__);
osSyncPrintf("Linker : %s\n", __linker__);
#endif
create_thread(&gSoundThread, 4, thread4_sound, NULL, gThread4Stack + 0x2000, 20);
osStartThread(&gSoundThread);