summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/menuitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/menuitem.h')
-rw-r--r--src/frontend/mame/ui/menuitem.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/frontend/mame/ui/menuitem.h b/src/frontend/mame/ui/menuitem.h
index 0ba4629c93b..4900e78485b 100644
--- a/src/frontend/mame/ui/menuitem.h
+++ b/src/frontend/mame/ui/menuitem.h
@@ -9,13 +9,14 @@
***************************************************************************/
-#pragma once
-
#ifndef MAME_FRONTEND_UI_MENUITEM_H
#define MAME_FRONTEND_UI_MENUITEM_H
+#pragma once
+
namespace ui {
+
// special menu item for separators
#define MENU_SEPARATOR_ITEM "---"
@@ -38,7 +39,7 @@ public:
std::string text;
std::string subtext;
- uint32_t flags;
+ uint32_t flags;
void *ref;
menu_item_type type; // item type (eventually will go away when itemref is proper ui_menu_item class rather than void*)
};