aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2005-04-19 06:25:35 +0000
committerTravis Howell2005-04-19 06:25:35 +0000
commitdfaf0145da57f30c8fb148a76522ceade453a087 (patch)
treeda7b4e5b9da10bb3df536493269fd96cd7b585ec /simon
parentee3b511276027f4252ed21d6be487d1042a6f051 (diff)
downloadscummvm-rg350-dfaf0145da57f30c8fb148a76522ceade453a087.tar.gz
scummvm-rg350-dfaf0145da57f30c8fb148a76522ceade453a087.tar.bz2
scummvm-rg350-dfaf0145da57f30c8fb148a76522ceade453a087.zip
Add tempo fix for simon1demo music, from bug #1164263.
svn-id: r17677
Diffstat (limited to 'simon')
-rw-r--r--simon/midiparser_s1d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/midiparser_s1d.cpp b/simon/midiparser_s1d.cpp
index d057c05807..e3a872f326 100644
--- a/simon/midiparser_s1d.cpp
+++ b/simon/midiparser_s1d.cpp
@@ -139,7 +139,7 @@ bool MidiParser_S1D::loadMusic(byte *data, uint32 size) {
// will persist beyond this call, i.e. we do NOT
// copy the data to our own buffer. Take warning....
resetTracking();
- setTempo(500000);
+ setTempo(666667);
setTrack(0);
return true;
}