From 1d1bef77f6554ce4ad2fa700c3ea924daaf8e0d4 Mon Sep 17 00:00:00 2001 From: Nathan Woods Date: Sun, 10 Jul 2016 16:15:44 -0400 Subject: [PATCH] Made menu_file_create::m_ok private (used to be protected) --- src/frontend/mame/ui/filecreate.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/frontend/mame/ui/filecreate.h b/src/frontend/mame/ui/filecreate.h index 47905564d68..9dfb50d7432 100644 --- a/src/frontend/mame/ui/filecreate.h +++ b/src/frontend/mame/ui/filecreate.h @@ -45,12 +45,11 @@ public: protected: virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override; - bool & m_ok; - private: virtual void populate() override; virtual void handle() override; + bool & m_ok; device_image_interface * m_image; std::string & m_current_directory; std::string & m_current_file;