diff options
author | James Brown | 2004-11-11 14:19:38 +0000 |
---|---|---|
committer | James Brown | 2004-11-11 14:19:38 +0000 |
commit | 4aa5649c1ef4f243a2fc3e14e494d743aa7e12c1 (patch) | |
tree | d6df9eadb8bb1df57118ff421ea09f2fcdfe13aa /sound | |
parent | cb4b3c1f7ee5a56d50307e75de6462b7d259903f (diff) | |
download | scummvm-rg350-4aa5649c1ef4f243a2fc3e14e494d743aa7e12c1.tar.gz scummvm-rg350-4aa5649c1ef4f243a2fc3e14e494d743aa7e12c1.tar.bz2 scummvm-rg350-4aa5649c1ef4f243a2fc3e14e494d743aa7e12c1.zip |
Erm, this was never meant to be commited. I might as well leave the .h change for now, until kyra is investigated further.
svn-id: r15788
Diffstat (limited to 'sound')
-rw-r--r-- | sound/midiparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/midiparser.cpp b/sound/midiparser.cpp index f41580e665..48d8f6d0d1 100644 --- a/sound/midiparser.cpp +++ b/sound/midiparser.cpp @@ -181,8 +181,8 @@ void MidiParser::onTimer() { _position._last_event_tick += info.delta; if (info.event < 0x80) { warning("Bad command or running status %02X", info.event); - //_position._play_pos = 0; - //return; + _position._play_pos = 0; + return; } if (info.event == 0xF0) { |