From d320ea6d70f36e7a983c3cb7e052f9ba882254ee Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 18 Apr 2015 21:37:13 +0000 Subject: [PATCH] Fix the sounds at the end of the episode 3 cutscene. git-svn-id: https://svn.eduke32.com/eduke32@5153 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/sounds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/source/sounds.c b/polymer/eduke32/source/sounds.c index 4820250b3..a57a27814 100644 --- a/polymer/eduke32/source/sounds.c +++ b/polymer/eduke32/source/sounds.c @@ -893,5 +893,5 @@ int32_t A_CheckAnySoundPlaying(int32_t i) int32_t S_CheckSoundPlaying(int32_t i, int32_t num) { if (EDUKE32_PREDICT_FALSE((unsigned)num > (unsigned)g_maxSoundPos)) return 0; - return (i == -1) ? (g_soundlocks[num] >= 200) : g_sounds[num].num; + return (i == -1) ? (g_soundlocks[num] > 200) : g_sounds[num].num; }