From 9139daf4150d22905a59014e7515f17f52415f89 Mon Sep 17 00:00:00 2001 From: parasti Date: Thu, 23 Nov 2006 10:58:55 +0000 Subject: [PATCH] Fixed an issue where the chan array was cleared during audio_free, resulting in all sounds being (and remaining) muted after toggling the audio setting in the conf screen. git-svn-id: https://s.snth.net/svn/neverball/trunk@743 78b8d119-cf0a-0410-b17c-f493084dd1d7 --- share/audio.c | 1 - 1 file changed, 1 deletion(-) diff --git a/share/audio.c b/share/audio.c index ff2e245..d9ecdb6 100644 --- a/share/audio.c +++ b/share/audio.c @@ -80,7 +80,6 @@ void audio_free(void) Mix_FreeChunk(buff[i]); buff[i] = NULL; - chan[i] = 0; } audio_state = 0; -- 1.7.9.5