diff options
Diffstat (limited to 'src/emu/ui/filemngr.h')
-rw-r--r-- | src/emu/ui/filemngr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/ui/filemngr.h b/src/emu/ui/filemngr.h index 8cf34451078..38c4e068281 100644 --- a/src/emu/ui/filemngr.h +++ b/src/emu/ui/filemngr.h @@ -23,9 +23,9 @@ public: ui_menu_file_manager(running_machine &machine, render_container *container, const char *warnings); virtual ~ui_menu_file_manager(); - virtual void populate(); - virtual void handle(); - virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2); + virtual void populate() override; + virtual void handle() override; + virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override; void fill_image_line(device_image_interface *img, std::string &instance, std::string &filename); |