Files
libsm64/src/debug_print.h
T
2020-10-27 15:11:12 -06:00

13 lines
292 B
C

#pragma once
#include "libsm64.h"
extern SM64DebugPrintFunctionPtr g_debug_print_func;
#define DEBUG_PRINT( ... ) do { \
if( g_debug_print_func ) { \
char debugStr[1024]; \
sprintf( debugStr, __VA_ARGS__ ); \
g_debug_print_func( debugStr ); \
} \
} while(0)