mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
CGE2: Remove duplicate override keywords
This commit is contained in:
@@ -115,13 +115,13 @@ private:
|
||||
void sndMidiStop();
|
||||
public:
|
||||
explicit MusicPlayer(CGE2Engine *vm);
|
||||
~MusicPlayer() override override;
|
||||
~MusicPlayer() override;
|
||||
|
||||
void loadMidi(int ref);
|
||||
void killMidi();
|
||||
|
||||
void send(uint32 b) override override;
|
||||
void sendToChannel(byte channel, uint32 b) override override;
|
||||
void send(uint32 b) override;
|
||||
void sendToChannel(byte channel, uint32 b) override;
|
||||
};
|
||||
|
||||
} // End of namespace CGE2
|
||||
|
||||
Reference in New Issue
Block a user