From dc135e46ec9c4524ac6cbfb24c6225b1d28bb357 Mon Sep 17 00:00:00 2001 From: Dethrace Engineering Department <78985374+dethrace-labs@users.noreply.github.com> Date: Wed, 9 Aug 2023 12:53:32 +1200 Subject: [PATCH] fixes initial value of gOld_sound_detail_level (#347) --- src/DETHRACE/common/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DETHRACE/common/sound.c b/src/DETHRACE/common/sound.c index f445d2ab..f2a0d32e 100644 --- a/src/DETHRACE/common/sound.c +++ b/src/DETHRACE/common/sound.c @@ -18,7 +18,7 @@ int gSound_detail_level; int gVirgin_pass = 1; -int gOld_sound_detail_level; +int gOld_sound_detail_level = -1; int gLast_tune; int gRandom_MIDI_tunes[3]; int gRandom_Rockin_MIDI_tunes[3];