Skip to content

Commit

Permalink
PARALLACTION: Make sure overridden methods are not used. Fixes compil…
Browse files Browse the repository at this point in the history
…er warning
  • Loading branch information
sev- committed Nov 3, 2013
1 parent 18b7c5f commit 8484b4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions engines/parallaction/sound_br.cpp
Expand Up @@ -207,6 +207,7 @@ class MidiPlayer_MSC : public Audio::MidiPlayer {

void play(Common::SeekableReadStream *stream);
virtual void pause(bool p);
virtual void pause() { assert(0); } // overridden
virtual void setVolume(int volume);
virtual void onTimer();

Expand Down
1 change: 1 addition & 0 deletions engines/parallaction/sound_ns.cpp
Expand Up @@ -43,6 +43,7 @@ class MidiPlayer : public Audio::MidiPlayer {

void play(Common::SeekableReadStream *stream);
void pause(bool p);
virtual void pause() { assert(0); } // overridden
virtual void onTimer();

private:
Expand Down

0 comments on commit 8484b4b

Please sign in to comment.