diff options
author | 2016-02-24 07:46:57 +0100 | |
---|---|---|
committer | 2016-02-24 07:46:57 +0100 | |
commit | 3abcaee63ff285514e8b51a60949c97a7dfa5304 (patch) | |
tree | 63e6be46c1932606689f9bfacc920d69cfc4b51f /src/emu/ui/datmenu.h | |
parent | 0cbd8782119b140920097a2bee76f36aef014be9 (diff) |
Cleanups and version bump
Diffstat (limited to 'src/emu/ui/datmenu.h')
-rw-r--r-- | src/emu/ui/datmenu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui/datmenu.h b/src/emu/ui/datmenu.h index f799e5fa7d0..0d2ae7d686d 100644 --- a/src/emu/ui/datmenu.h +++ b/src/emu/ui/datmenu.h @@ -31,7 +31,7 @@ public: virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override; private: - int actual; + int actual; const game_driver *m_driver; ui_software_info *m_swinfo; std::string m_list, m_short, m_long, m_parent; @@ -43,7 +43,7 @@ private: { list_items(std::string l, int i, std::string rev) { label = l; option = i; revision = rev; } std::string label; - int option; + int option; std::string revision; }; std::vector<list_items> m_items_list; |