From 7e39fe457fa952d85e00acfc26dc360bad586e68 Mon Sep 17 00:00:00 2001 From: Sergey Semushin Date: Sat, 15 Jun 2019 07:35:43 +0300 Subject: [PATCH] Fix diff in snd_play_snd. --- Source/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/sound.cpp b/Source/sound.cpp index e94c3e051..f64af1a1e 100644 --- a/Source/sound.cpp +++ b/Source/sound.cpp @@ -104,7 +104,7 @@ void snd_play_snd(TSnd *pSnd, int lVolume, int lPan) tc = GetTickCount(); if (tc - pSnd->start_tc < 80) { - pSnd->start_tc = GetTickCount(); + GetTickCount(); // BUGFIX: unnecessary GetTickCount return; }