mirror of https://github.com/stella-emu/stella.git
Fix missing 'override's.
This commit is contained in:
parent
0a85e507d0
commit
bd288f7119
|
@ -74,7 +74,7 @@ class DebuggerDialog : public Dialog
|
|||
void showFatalMessage(const string& msg);
|
||||
|
||||
private:
|
||||
void center() { positionAt(0); }
|
||||
void center() override { positionAt(0); }
|
||||
void loadConfig() override;
|
||||
void handleKeyDown(StellaKey key, StellaMod mod) override;
|
||||
void handleCommand(CommandSender* sender, int cmd, int data, int id) override;
|
||||
|
|
|
@ -85,11 +85,11 @@ class LauncherDialog : public Dialog
|
|||
void reload() { updateListing(); }
|
||||
|
||||
private:
|
||||
void center() { positionAt(0); }
|
||||
void center() override { positionAt(0); }
|
||||
void handleKeyDown(StellaKey key, StellaMod mod) override;
|
||||
void handleMouseDown(int x, int y, MouseButton b, int clickCount) override;
|
||||
void handleCommand(CommandSender* sender, int cmd, int data, int id) override;
|
||||
void handleJoyDown(int stick, int button);
|
||||
void handleJoyDown(int stick, int button) override;
|
||||
Event::Type getJoyAxisEvent(int stick, int axis, int value) override;
|
||||
|
||||
void loadConfig() override;
|
||||
|
|
Loading…
Reference in New Issue