aboutsummaryrefslogtreecommitdiff
path: root/sound/mididrv.cpp
diff options
context:
space:
mode:
authorNicolas Noble2002-05-18 21:12:11 +0000
committerNicolas Noble2002-05-18 21:12:11 +0000
commitf453058bf21fbad286f498eab10930fb1e83ad97 (patch)
tree3a207a7b0cbd8cda1098040328b1a2dc5b39026f /sound/mididrv.cpp
parent65b2c9793bbf7ef400322fe36e942a908cba60c5 (diff)
downloadscummvm-rg350-f453058bf21fbad286f498eab10930fb1e83ad97.tar.gz
scummvm-rg350-f453058bf21fbad286f498eab10930fb1e83ad97.tar.bz2
scummvm-rg350-f453058bf21fbad286f498eab10930fb1e83ad97.zip
The second part of armisme fix is here...
<Arisme> but on the bright side, now ScummVM will be #1 on Sourceforge :D Oh well.... svn-id: r4353
Diffstat (limited to 'sound/mididrv.cpp')
-rw-r--r--sound/mididrv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp
index 4c639e68e6..cff0a0e775 100644
--- a/sound/mididrv.cpp
+++ b/sound/mididrv.cpp
@@ -1271,7 +1271,7 @@ int MidiDriver_MIDIEMU::midiemu_callback_thread(void *param) {
event = my_evs[i].event;
if ((event>>24) == ME_TEMPO) {
- event = (MEVT_TEMPO << 24) | (event & 0xFFFFFF);
+ event = (ME_TEMPO << 24) | (event & 0xFFFFFF);
}
driver->send(event);
if (my_evs[i].delta) {