mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-18 07:53:12 +00:00
HUGO: Fix warning about hidden pause() method from parent class
This commit is contained in:
parent
30909b1ae4
commit
f485450758
@ -43,6 +43,12 @@ public:
|
||||
void pause(bool p);
|
||||
void play(uint8 *stream, uint16 size);
|
||||
|
||||
// The following line prevents compiler warnings about hiding the pause()
|
||||
// method from the parent class.
|
||||
// FIXME: Maybe the pause(bool p) method should be removed and the
|
||||
// pause/resume methods of the parent class be used instead?
|
||||
virtual void pause() { Audio::MidiPlayer::pause(); }
|
||||
|
||||
uint32 getBaseTempo();
|
||||
|
||||
// Overload Audio::MidiPlayer method
|
||||
|
Loading…
x
Reference in New Issue
Block a user