From 8d1236fbba66b877034263ca3c7a2828213329e0 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Mon, 31 Oct 2022 22:11:55 +0100 Subject: [PATCH] Increase sound fade from 500ms to 800ms --- src/sound.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound.cxx b/src/sound.cxx index 579e724..8476521 100644 --- a/src/sound.cxx +++ b/src/sound.cxx @@ -40,7 +40,7 @@ CSound::StopSound (bool immediat, Sint32 rank) if (immediat || Platform::getType () == Platform::Type::JS) Mix_HaltChannel (stopCh + 1); else - Mix_FadeOutChannel (stopCh + 1, 500); + Mix_FadeOutChannel (stopCh + 1, 800); } m_channelBlupi[rank] = SOUND_NONE;