summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2011-04-18 17:07:17 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2011-04-18 17:07:17 +0000
commite8c9a5598d695b95e465e6e41cfa22efacef8ee0 (patch)
treea7debc882af68eca4d354dc660a3e1e42d7ec390
parent70afb316ed5d38c63017af674e31b4ecb6530996 (diff)
uiimage.c: File Manager now displays the brief name of the image device to make easier to decide where to mount images (see e.g. megatech) [Fabio Priuli]
-rw-r--r--src/emu/uiimage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/uiimage.c b/src/emu/uiimage.c
index cb18fb4bc86..f7a74e36529 100644
--- a/src/emu/uiimage.c
+++ b/src/emu/uiimage.c
@@ -996,8 +996,8 @@ static void menu_file_manager_populate(running_machine &machine, ui_menu *menu,
{
/* get the image type/id */
snprintf(buffer, ARRAY_LENGTH(buffer),
- "%s",
- image->image_config().devconfig().name());
+ "%s (%s)",
+ image->image_config().devconfig().name(), image->image_config().brief_instance_name());
/* get the base name */
if (image->basename() != NULL)