summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/info.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-01-28 09:20:10 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-01-28 09:20:10 +0100
commit26e7a17b6326aa5a75a6276e52cf84a94c16d7a0 (patch)
treebab4468226c59d590688e0ece892f5bfbca58736 /src/emu/ui/info.c
parent13b862c4fae88f0f819c2c4416d49249e4de45b9 (diff)
Cleanups and version bumpmame0158
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;
}
}