From 0e98244df27ee3e8e97c4b7f2804ef66704248c2 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 15 Sep 2008 23:40:13 +0000 Subject: [PATCH] . fixed an uninitialized variable in sound code. SVN r1229 (trunk) --- src/s_sound.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/s_sound.cpp b/src/s_sound.cpp index d3f776c70e..31f2ca2519 100644 --- a/src/s_sound.cpp +++ b/src/s_sound.cpp @@ -1847,9 +1847,9 @@ void S_ChannelEnded(FISoundChannel *ichan) { evicted = !!(schan->ChanFlags & CHAN_JUSTSTARTED); } - else if (pos < len) + else { - evicted = true; + evicted = (pos < len); } } if (!evicted)