diff options
| author | Jamieson Christian | 2003-04-18 14:38:31 +0000 | 
|---|---|---|
| committer | Jamieson Christian | 2003-04-18 14:38:31 +0000 | 
| commit | 20e22e6f2954dd404a047fba8a51f9a67ee1b706 (patch) | |
| tree | 23ea0f9211e572a87e4f6cb6a5af2690a2355106 | |
| parent | 1d1e11121424d723845b92f08a9ae4d450d94709 (diff) | |
| download | scummvm-rg350-20e22e6f2954dd404a047fba8a51f9a67ee1b706.tar.gz scummvm-rg350-20e22e6f2954dd404a047fba8a51f9a67ee1b706.tar.bz2 scummvm-rg350-20e22e6f2954dd404a047fba8a51f9a67ee1b706.zip | |
Fix for bug [666187] DOTT: Coffee music never stops
svn-id: r7016
| -rw-r--r-- | scumm/imuse.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 97356f6117..4d590a63e4 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -2427,7 +2427,7 @@ bool Player::jump(uint track, uint beat, uint tick) {  	_beat_index = beat;  	_tick_index = tick; -	_cur_pos = topos; +	_cur_pos = curpos; // topos;  	_next_pos = curpos;  	_timer_counter = 0;  	_song_offset = track_offs; | 
