summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/info.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/info.cpp')
-rw-r--r--src/frontend/mame/ui/info.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/mame/ui/info.cpp b/src/frontend/mame/ui/info.cpp
index 3a57aac42c0..1c9e649dce7 100644
--- a/src/frontend/mame/ui/info.cpp
+++ b/src/frontend/mame/ui/info.cpp
@@ -576,13 +576,13 @@ void menu_image_info::image_info(device_image_interface *image)
// display supported information, if available
switch (swinfo.supported())
{
- case SOFTWARE_SUPPORTED_NO:
+ case software_support::UNSUPPORTED:
item_append(_("Not supported"), FLAG_DISABLE, nullptr);
break;
- case SOFTWARE_SUPPORTED_PARTIAL:
+ case software_support::PARTIALLY_SUPPORTED:
item_append(_("Partially supported"), FLAG_DISABLE, nullptr);
break;
- default:
+ case software_support::SUPPORTED:
break;
}
}