Pulled out debug print function registering into a separate method from init.

This commit is contained in:
MeltyPlayer
2022-10-19 21:10:25 -05:00
parent ede1c4db2c
commit babdc896b5
3 changed files with 11 additions and 8 deletions
-3
View File
@@ -10,8 +10,5 @@ extern SM64DebugPrintFunctionPtr g_debug_print_func;
char debugStr[1024]; \
sprintf( debugStr, __VA_ARGS__ ); \
g_debug_print_func( debugStr ); \
} else { \
printf( __VA_ARGS__ ); \
printf( "\n" ); \
} \
} while(0)