From d433c4565e85f751459310902e5613901fd3f1b3 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Mon, 6 Oct 2014 22:44:26 +0700 Subject: [PATCH] Add dummy DebugMsg() and DebugRSPState() functions. --- Debug.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Debug.h b/Debug.h index c4fa27df..7e9afd08 100644 --- a/Debug.h +++ b/Debug.h @@ -38,5 +38,7 @@ void DebugRSPState( u32 pci, u32 pc, u32 cmd, u32 w0, u32 w1 ); void DebugMsg( u16 type, const char * format, ... ); void StartDump( char *filename ); void EndDump(); - +#else +#define DebugMsg(A, ...) +#define DebugRSPState(A, ...) #endif // DEBUG_H