From 51933629d1f1a17839ddbb75b2b619effe117abb Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 2 Nov 2009 21:54:57 +0000 Subject: Changed foo(void) to foo() in almost all non-backend source files svn-id: r45616 --- engines/tinsel/music.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/tinsel/music.h') diff --git a/engines/tinsel/music.h b/engines/tinsel/music.h index 1909430c32..069c03c979 100644 --- a/engines/tinsel/music.h +++ b/engines/tinsel/music.h @@ -40,9 +40,9 @@ bool PlayMidiSequence( // Plays the specified MIDI sequence through the sound d uint32 dwFileOffset, // handle of MIDI sequence data bool bLoop); // Whether to loop the sequence -bool MidiPlaying(void); // Returns TRUE if a Midi tune is currently playing +bool MidiPlaying(); // Returns TRUE if a Midi tune is currently playing -bool StopMidi(void); // Stops any currently playing midi +bool StopMidi(); // Stops any currently playing midi void SetMidiVolume( // Sets the volume of the MIDI music. Returns the old volume int vol); // new volume - 0..MAXMIDIVOL @@ -90,7 +90,7 @@ public: // The original sets the "sequence timing" to 109 Hz, whatever that // means. The default is 120. - uint32 getBaseTempo(void) { return _driver ? (109 * _driver->getBaseTempo()) / 120 : 0; } + uint32 getBaseTempo() { return _driver ? (109 * _driver->getBaseTempo()) / 120 : 0; } //Channel allocation functions MidiChannel *allocateChannel() { return 0; } -- cgit v1.2.3