diff options
| author | 2015-12-06 09:23:23 +0100 | |
|---|---|---|
| committer | 2015-12-06 09:23:23 +0100 | |
| commit | 3ee9b6cee4c0757a999f63b70a190ac6020984b2 (patch) | |
| tree | daf14231443da37360838d6dcfabf8a45056105f /src/osd/modules/debugger/debugint.cpp | |
| parent | 1f8306e853efcd2a27463a69f0de36a02c6877d3 (diff) | |
fixing some more override (nw)
Diffstat (limited to 'src/osd/modules/debugger/debugint.cpp')
| -rw-r--r-- | src/osd/modules/debugger/debugint.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/osd/modules/debugger/debugint.cpp b/src/osd/modules/debugger/debugint.cpp index 49ae108e881..02e3ae93689 100644 --- a/src/osd/modules/debugger/debugint.cpp +++ b/src/osd/modules/debugger/debugint.cpp @@ -34,12 +34,12 @@ public: virtual ~debug_internal() { } - virtual int init(const osd_options &options) { return 0; } - virtual void exit(); + virtual int init(const osd_options &options) override { return 0; } + virtual void exit() override; - virtual void init_debugger(running_machine &machine); - virtual void wait_for_debugger(device_t &device, bool firststop); - virtual void debugger_update(); + virtual void init_debugger(running_machine &machine) override; + virtual void wait_for_debugger(device_t &device, bool firststop) override; + virtual void debugger_update() override; private: running_machine *m_machine; @@ -1143,8 +1143,8 @@ class ui_menu_debug : public ui_menu { public: ui_menu_debug(running_machine &machine, render_container *container) : ui_menu(machine, container) {} virtual ~ui_menu_debug() {} - virtual void populate() {} - virtual void handle() {} + virtual void populate() override {} + virtual void handle() override {} }; static void CreateMainMenu(running_machine &machine) |
