mirror of https://github.com/PCSX2/pcsx2.git
15 lines
195 B
C++
15 lines
195 B
C++
|
#include "asiosys.h"
|
||
|
|
||
|
#if DEBUG
|
||
|
#if MAC
|
||
|
#include <TextUtils.h>
|
||
|
void DEBUGGERMESSAGE(char *string)
|
||
|
{
|
||
|
c2pstr(string);
|
||
|
DebugStr((unsigned char *)string);
|
||
|
}
|
||
|
#else
|
||
|
#error debugmessage
|
||
|
#endif
|
||
|
#endif
|