summaryrefslogtreecommitdiffstats
path: root/src/frontend/mame/ui/simpleselgame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/simpleselgame.cpp')
-rw-r--r--src/frontend/mame/ui/simpleselgame.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/mame/ui/simpleselgame.cpp b/src/frontend/mame/ui/simpleselgame.cpp
index 76578d132dc..956594c52f7 100644
--- a/src/frontend/mame/ui/simpleselgame.cpp
+++ b/src/frontend/mame/ui/simpleselgame.cpp
@@ -249,7 +249,7 @@ void simple_menu_select_game::populate(float &customtop, float &custombottom)
if (curmatch != -1)
{
int cloneof = m_drivlist->non_bios_clone(curmatch);
- item_append(m_drivlist->driver(curmatch).name, m_drivlist->driver(curmatch).description, (cloneof == -1) ? 0 : FLAG_INVERT, (void *)&m_drivlist->driver(curmatch));
+ item_append(m_drivlist->driver(curmatch).name, m_drivlist->driver(curmatch).type.fullname(), (cloneof == -1) ? 0 : FLAG_INVERT, (void *)&m_drivlist->driver(curmatch));
}
}
@@ -317,13 +317,13 @@ void simple_menu_select_game::custom_render(void *selectedref, float top, float
const char *gfxstat, *soundstat;
// first line is game name
- tempbuf[0] = string_format(_("%1$-.100s"), driver->description);
+ tempbuf[0] = string_format(_("%1$-.100s"), driver->type.fullname());
// next line is year, manufacturer
tempbuf[1] = string_format(_("%1$s, %2$-.100s"), driver->year, driver->manufacturer);
// next line source path
- tempbuf[2] = string_format(_("Driver: %1$-.100s"), core_filename_extract_base(driver->source_file));
+ tempbuf[2] = string_format(_("Driver: %1$-.100s"), core_filename_extract_base(driver->type.source()));
// next line is overall driver status
if (driver->flags & MACHINE_NOT_WORKING)