15 lines
312 B
C
15 lines
312 B
C
#pragma once
|
|
|
|
#include "libsm64.h"
|
|
#include <stdio.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)
|