diff options
Diffstat (limited to 'source/snd_main.c')
-rw-r--r-- | source/snd_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/snd_main.c b/source/snd_main.c index 2e72247..48317f5 100644 --- a/source/snd_main.c +++ b/source/snd_main.c @@ -312,7 +312,9 @@ void S_Shutdown( void ) { void S_Activate( qboolean active ) { if( sound_started ) { - S_StopAllSounds(); +#ifdef _WIN32 + S_StopAllSounds(); // FIXME +#endif snddma.Activate( active ); } } |