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

This commit is contained in:
Mathieu Schroeter 2022-10-31 22:11:55 +01:00
parent 77c0a6ee3b
commit 8d1236fbba
No known key found for this signature in database
GPG Key ID: 8B9145A5FA9DA8A8

View File

@ -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;