summaryrefslogtreecommitdiffstats
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/mame/ui/menuitem.h b/src/frontend/mame/ui/menuitem.h
index 1cfd8f1c1cf..6bcd01d0734 100644
--- a/src/frontend/mame/ui/menuitem.h
+++ b/src/frontend/mame/ui/menuitem.h
@@ -31,8 +31,8 @@ enum class menu_item_type
class menu_item
{
public:
- const char *text;
- const char *subtext;
+ std::string text;
+ std::string subtext;
UINT32 flags;
void *ref;
menu_item_type type; // item type (eventually will go away when itemref is proper ui_menu_item class rather than void*)