1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Increase sound fade from 500ms to 800ms (bis)

This commit is contained in:
Mathieu Schroeter 2022-10-31 22:19:40 +01:00
parent 8d1236fbba
commit 353800ec5a
No known key found for this signature in database
GPG Key ID: 8B9145A5FA9DA8A8

View File

@ -66,7 +66,7 @@ CSound::StopAllSounds (bool immediat, const std::set<Sint32> * except)
if (immediat || Platform::getType () == Platform::Type::JS)
Mix_HaltChannel (i + 1);
else
Mix_FadeOutChannel (i + 1, 500);
Mix_FadeOutChannel (i + 1, 800);
}
}