summaryrefslogtreecommitdiffstats
path: root/src/frontend/mame/ui/swlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/swlist.cpp')
-rw-r--r--src/frontend/mame/ui/swlist.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/frontend/mame/ui/swlist.cpp b/src/frontend/mame/ui/swlist.cpp
index d1e3f66da56..99ce1e5bc72 100644
--- a/src/frontend/mame/ui/swlist.cpp
+++ b/src/frontend/mame/ui/swlist.cpp
@@ -83,18 +83,18 @@ void menu_software_parts::populate(float &customtop, float &custombottom)
software_part_menu_entry &entry1(*m_entries.emplace(m_entries.end()));
entry1.type = result::EMPTY;
entry1.part = nullptr;
- item_append(_("[empty slot]"), "", 0, &entry1);
+ item_append(_("[empty slot]"), 0, &entry1);
software_part_menu_entry &entry2(*m_entries.emplace(m_entries.end()));
entry2.type = result::FMGR;
entry2.part = nullptr;
- item_append(_("[file manager]"), "", 0, &entry2);
+ item_append(_("[file manager]"), 0, &entry2);
software_part_menu_entry &entry3(*m_entries.emplace(m_entries.end()));
entry3.type = result::SWLIST;
entry3.part = nullptr;
- item_append(_("[software list]"), "", 0, &entry3);
+ item_append(_("[software list]"), 0, &entry3);
}
for (const software_part &swpart : m_info->parts())
@@ -228,7 +228,7 @@ void menu_software_list::populate(float &customtop, float &custombottom)
append_software_entry(swinfo);
// add an entry to change ordering
- item_append(_("Switch Item Ordering"), "", 0, ITEMREF_SWITCH_ITEM_ORDERING);
+ item_append(_("Switch Item Ordering"), 0, ITEMREF_SWITCH_ITEM_ORDERING);
// append all of the menu entries
for (auto &entry : m_entrylist)
@@ -370,7 +370,7 @@ void menu_software::populate(float &customtop, float &custombottom)
break;
}
if (found)
- item_append(swlistdev.description(), "", 0, (void *)&swlistdev);
+ item_append(swlistdev.description(), 0, (void *)&swlistdev);
}
// add compatible software lists for this system
@@ -389,8 +389,8 @@ void menu_software::populate(float &customtop, float &custombottom)
if (found)
{
if (!have_compatible)
- item_append(_("[compatible lists]"), "", FLAG_DISABLE, nullptr);
- item_append(swlistdev.description(), "", 0, (void *)&swlistdev);
+ item_append(_("[compatible lists]"), FLAG_DISABLE, nullptr);
+ item_append(swlistdev.description(), 0, (void *)&swlistdev);
}
have_compatible = true;
}