summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/filemngr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ui/filemngr.c')
-rw-r--r--src/emu/ui/filemngr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui/filemngr.c b/src/emu/ui/filemngr.c
index 2241e0ab37a..1650145277d 100644
--- a/src/emu/ui/filemngr.c
+++ b/src/emu/ui/filemngr.c
@@ -86,10 +86,10 @@ void ui_menu_file_manager::populate()
if (image->part_entry() != NULL)
{
const software_part *tmp = image->part_entry();
- if (tmp->name != NULL)
+ if (tmp->name() != NULL)
{
tmp_name.cat(" (");
- tmp_name.cat(tmp->name);
+ tmp_name.cat(tmp->name());
// also check if this part has a specific part_id (e.g. "Map Disc", "Bonus Disc", etc.), and in case display it
if (image->get_feature("part_id") != NULL)
{