mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed compilation of Windows Debug targets
src\sound\mididevices\music_opl_mididevice.cpp(112): error C3861: 'I_DebugPrint': identifier not found src\sound\mididevices\music_opl_mididevice.cpp(206): error C3861: 'I_DebugPrint': identifier not found src\sound\mididevices\music_opl_mididevice.cpp(234): error C3861: 'I_DebugPrint': identifier not found src\sound\mididevices\music_opl_mididevice.cpp(244): error C3861: 'I_DebugPrint': identifier not found
This commit is contained in:
parent
ba451b46c8
commit
e400137ffe
1 changed files with 1 additions and 0 deletions
|
@ -44,6 +44,7 @@
|
|||
// MACROS ------------------------------------------------------------------
|
||||
|
||||
#if defined(_DEBUG) && defined(_WIN32) && defined(_MSC_VER)
|
||||
void I_DebugPrint(const char *cp);
|
||||
#define DEBUGOUT(m,c,s,t) \
|
||||
{ char foo[128]; mysnprintf(foo, countof(foo), m, c, s, t); I_DebugPrint(foo); }
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue