mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-24 02:36:27 +00:00
Adjust music timer
svn-id: r9911
This commit is contained in:
parent
5f8630d41b
commit
a917313307
@ -1219,7 +1219,7 @@ int Scumm::scummLoop(int delta) {
|
||||
// TODO: The music delay (given in milliseconds) might have to be tuned a little
|
||||
// to get it correct for all games. Without the ability to watch/listen to the
|
||||
// original games, I can't do that myself.
|
||||
const int MUSIC_DELAY = 300;
|
||||
const int MUSIC_DELAY = 500;
|
||||
tempMusic += delta * 15; // Convert delta to milliseconds
|
||||
if (tempMusic >= MUSIC_DELAY) {
|
||||
tempMusic %= MUSIC_DELAY;
|
||||
|
Loading…
Reference in New Issue
Block a user