CGE2: Remove duplicate override keywords

This commit is contained in:
Bastien Bouclet
2020-02-09 12:58:14 +01:00
parent e3abab45ab
commit db347350a5
+3 -3
View File
@@ -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