diff --git a/src/debug_print.h b/src/debug_print.h index 987cc31..913ed42 100644 --- a/src/debug_print.h +++ b/src/debug_print.h @@ -10,5 +10,8 @@ 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)