From 353800ec5ad275e46ed3124a470016832c0bd929 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Mon, 31 Oct 2022 22:19:40 +0100 Subject: [PATCH] Increase sound fade from 500ms to 800ms (bis) --- src/sound.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound.cxx b/src/sound.cxx index 8476521..bdab2c1 100644 --- a/src/sound.cxx +++ b/src/sound.cxx @@ -66,7 +66,7 @@ CSound::StopAllSounds (bool immediat, const std::set * except) if (immediat || Platform::getType () == Platform::Type::JS) Mix_HaltChannel (i + 1); else - Mix_FadeOutChannel (i + 1, 500); + Mix_FadeOutChannel (i + 1, 800); } }