From 3ee9b6cee4c0757a999f63b70a190ac6020984b2 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 6 Dec 2015 09:23:23 +0100 Subject: fixing some more override (nw) --- src/osd/modules/debugger/debugint.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/osd/modules/debugger/debugint.cpp') 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) -- cgit v1.2.3