diff options
Diffstat (limited to 'source/snd_main.c')
-rw-r--r-- | source/snd_main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/snd_main.c b/source/snd_main.c index 1c60fc4..9c38b13 100644 --- a/source/snd_main.c +++ b/source/snd_main.c @@ -204,8 +204,6 @@ void S_Init( void ) { } } - S_ClearBuffer(); - Com_Printf( "sound sampling rate: %i\n", dma.speed ); s_started = SS_DMA; } @@ -218,6 +216,9 @@ void S_Init( void ) { Cmd_Register( c_sound ); + // init playsound list + S_StopAllSounds(); + S_InitScaletable(); num_sfx = 0; |