summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/info.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ui/info.c')
-rw-r--r--src/emu/ui/info.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/ui/info.c b/src/emu/ui/info.c
index ea91914e64a..ba4fa24977a 100644
--- a/src/emu/ui/info.c
+++ b/src/emu/ui/info.c
@@ -89,21 +89,21 @@ void ui_menu_image_info::image_info(device_image_interface *image)
// display long filename
item_append(image->longname(), "", MENU_FLAG_DISABLE, NULL);
-
+
// display manufacturer and year
string.catprintf("%s, %s", image->manufacturer(), image->year());
item_append(string, "", MENU_FLAG_DISABLE, NULL);
// display supported information, if available
- switch (image->supported())
+ switch (image->supported())
{
- case SOFTWARE_SUPPORTED_NO:
+ case SOFTWARE_SUPPORTED_NO:
item_append("Not supported", "", MENU_FLAG_DISABLE, NULL);
break;
- case SOFTWARE_SUPPORTED_PARTIAL:
+ case SOFTWARE_SUPPORTED_PARTIAL:
item_append("Partially supported", "", MENU_FLAG_DISABLE, NULL);
break;
- default:
+ default:
break;
}
}