From 55c7c56709fc132fcf0b42d61fbf05e2ee5edf31 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 5 Sep 2020 17:56:09 +0200 Subject: [PATCH] - fixed bad sound check in Duke's E3 ending. --- source/games/duke/src/2d_d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/duke/src/2d_d.cpp b/source/games/duke/src/2d_d.cpp index 3f2d38697..525813405 100644 --- a/source/games/duke/src/2d_d.cpp +++ b/source/games/duke/src/2d_d.cpp @@ -436,7 +436,7 @@ public: break; case 5: - if (!S_CheckSoundPlaying(ENDSEQVOL3SND8)) + if (!S_CheckSoundPlaying(ENDSEQVOL3SND9)) { sound++; waittime = clock + (SoundEnabled()? 1'000'000'000 : 5'000'000'000); // if sound is off this wouldn't wait without a longer delay here.