diff options
-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 b6a20020dc..8547411b93 100644 --- a/scumm/imuse_player.cpp +++ b/scumm/imuse_player.cpp @@ -832,7 +832,7 @@ int Player::scan(uint totrack, uint tobeat, uint totick) { // the current track so that our state when starting the // new track is fully up to date. if (totrack != _track_index) - _parser->jumpToTick (-1, true); + _parser->jumpToTick ((uint32) -1, true); _parser->setTrack(totrack); if (!_parser->jumpToTick((tobeat - 1) * TICKS_PER_BEAT + totick, true)) { _scanning = false; |