aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorJamieson Christian2003-05-23 04:16:37 +0000
committerJamieson Christian2003-05-23 04:16:37 +0000
commit006d0a5ff81771f8387f13187675601fd52e2668 (patch)
tree96ed4255975ea803e30f8213e98e1fc4dffff00d /simon
parentbb1894e3b7965d76782b090ba9a253e4905a0cbc (diff)
downloadscummvm-rg350-006d0a5ff81771f8387f13187675601fd52e2668.tar.gz
scummvm-rg350-006d0a5ff81771f8387f13187675601fd52e2668.tar.bz2
scummvm-rg350-006d0a5ff81771f8387f13187675601fd52e2668.zip
Removed invalid timer rate
svn-id: r7848
Diffstat (limited to 'simon')
-rw-r--r--simon/midi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/midi.h b/simon/midi.h
index bbe5bf725c..8e14a239bc 100644
--- a/simon/midi.h
+++ b/simon/midi.h
@@ -83,7 +83,7 @@ public:
// Timing functions - MidiDriver now operates timers
void setTimerCallback (void *timer_param, void (*timer_proc) (void *)) { }
- uint32 getBaseTempo (void) { return _driver ? _driver->getBaseTempo() : 0x4A0000; }
+ uint32 getBaseTempo (void) { return _driver ? _driver->getBaseTempo() : 0; }
// Channel allocation functions
MidiChannel *allocateChannel() { return 0; }