src/music/os2_m.cpp
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 5835 e0ff603ae0b7
child 6720 35756db7e577
--- a/src/music/os2_m.cpp	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/music/os2_m.cpp	Mon Mar 19 12:38:16 2007 +0000
@@ -40,7 +40,7 @@
 	MidiSendCommand("play song from 0");
 }
 
-static void OS2MidiStopSong(void)
+static void OS2MidiStopSong()
 {
 	MidiSendCommand("close all");
 }
@@ -50,7 +50,7 @@
 	MidiSendCommand("set song audio volume %d", ((vol/127)*100));
 }
 
-static bool OS2MidiIsSongPlaying(void)
+static bool OS2MidiIsSongPlaying()
 {
 	char buf[16];
 	mciSendString("status song mode", buf, sizeof(buf), NULL, 0);
@@ -62,7 +62,7 @@
 	return 0;
 }
 
-static void OS2MidiStop(void)
+static void OS2MidiStop()
 {
 	MidiSendCommand("close all");
 }