diff --git a/source/snd_dma.c b/source/snd_dma.c index 3fa52a1..ad56ebf 100644 --- a/source/snd_dma.c +++ b/source/snd_dma.c @@ -37,6 +37,11 @@ #include "qargs.h" #include "quakedef.h" +// fixme: Damn crappy complier doesn't allow me to UNDEF _win32 on command line! +#ifdef WIN32SDL +#undef _WIN32 +#endif + #ifdef _WIN32 #include "winquake.h" #include "in_win.h" diff --git a/source/snd_mix.c b/source/snd_mix.c index 2ff8ff9..78fa4f0 100644 --- a/source/snd_mix.c +++ b/source/snd_mix.c @@ -35,6 +35,11 @@ #include "sound.h" #include "console.h" +// fixme: Damn crappy complier doesn't allow me to UNDEF _win32 on command line! +#ifdef WIN32SDL +#undef _WIN32 +#endif + #ifdef _WIN32 #include "winquake.h" #else