aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorJamieson Christian2002-11-27 15:16:06 +0000
committerJamieson Christian2002-11-27 15:16:06 +0000
commit10beae6417ede6769a9e54d508327b8101a14908 (patch)
tree5d054457b65d8541d19cca1be34ecc799eb3f231 /sound
parente6883de2ff154fc5c7495bec5f7af5aeb42f94ce (diff)
downloadscummvm-rg350-10beae6417ede6769a9e54d508327b8101a14908.tar.gz
scummvm-rg350-10beae6417ede6769a9e54d508327b8101a14908.tar.bz2
scummvm-rg350-10beae6417ede6769a9e54d508327b8101a14908.zip
Fixed mingw compile warnings
svn-id: r5729
Diffstat (limited to 'sound')
-rw-r--r--sound/mididrv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp
index 679b955b20..c5f486db27 100644
--- a/sound/mididrv.cpp
+++ b/sound/mididrv.cpp
@@ -265,7 +265,7 @@ int MidiDriver_WIN::open(int mode)
_mode = mode;
if (mode == MO_SIMPLE) {
- MMRESULT res = midiOutOpen((HMIDIOUT *) & _mo, MIDI_MAPPER, NULL, NULL, 0);
+ MMRESULT res = midiOutOpen((HMIDIOUT *) & _mo, MIDI_MAPPER, 0, 0, 0);
if (res != MMSYSERR_NOERROR)
check_error(res);
} else {