From: David Griffith Date: Wed, 19 Jun 2019 08:09:57 +0000 (-0700) Subject: OLD_SOUND_FLAG is valid only for V3 games. For V5+, the game wants to use UNDO. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=e3de2f0056e5e55843b2b21253f18d4652ea30c3;p=liskon_frotz.git OLD_SOUND_FLAG is valid only for V3 games. For V5+, the game wants to use UNDO. --- diff --git a/src/common/sound.c b/src/common/sound.c index 7c2e656..b1cbf4c 100644 --- a/src/common/sound.c +++ b/src/common/sound.c @@ -48,7 +48,7 @@ static bool playing = FALSE; */ void init_sound (void) { - if ((h_flags & SOUND_FLAG) || (h_flags & OLD_SOUND_FLAG)) { + if ((h_flags & SOUND_FLAG) || (h_version == V3 && (h_flags & OLD_SOUND_FLAG))) { f_setup.sound_flag = TRUE; locked = FALSE; playing = FALSE;