diff options
author | Jamieson Christian | 2003-08-21 15:51:28 +0000 |
---|---|---|
committer | Jamieson Christian | 2003-08-21 15:51:28 +0000 |
commit | 47c33674ecc2b57caa59ebd10217ab21c9a81f95 (patch) | |
tree | 4a57db9bb248e400b5fa3775a1218b32438a14a3 /scumm | |
parent | 446ca58580a6cbcad986ea9d13b64322a06f8fce (diff) | |
download | scummvm-rg350-47c33674ecc2b57caa59ebd10217ab21c9a81f95.tar.gz scummvm-rg350-47c33674ecc2b57caa59ebd10217ab21c9a81f95.tar.bz2 scummvm-rg350-47c33674ecc2b57caa59ebd10217ab21c9a81f95.zip |
Fix for Bug [792178] MI1: Intro asynchronity regression
Reverted Hoenicke's change. Why was this change made anyway?
Do not reinstate the "tempo tweak" before talking to me
about why it was needed.
svn-id: r9810
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/imuse_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse_player.cpp b/scumm/imuse_player.cpp index 988633c449..597544823c 100644 --- a/scumm/imuse_player.cpp +++ b/scumm/imuse_player.cpp @@ -129,7 +129,7 @@ bool Player::startSound(int sound, MidiDriver *midi) { } int Player::getMusicTimer() { - return _parser ? (_parser->getTick() / _parser->getPPQN()) : 0; + return _parser ? (_parser->getTick() * 2 / _parser->getPPQN()) : 0; } bool Player::isFadingOut() { |