summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/clifront.cpp
diff options
context:
space:
mode:
author etabeta78 <doge.fabio@gmail.com>2016-04-12 14:37:22 +0200
committer etabeta78 <doge.fabio@gmail.com>2016-04-12 14:37:22 +0200
commitc1600cafd92f045df8e5bbc1a74264cd71ab4a6e (patch)
tree931352496df7e4cb279f35663ad274c4ecd005b2 /src/emu/clifront.cpp
parentb47168d7e6e002a7c478a0a42e4f97c56ec280dc (diff)
diimage.cpp: Allow image devices to be configured with a fixed
(not user selectable) piece of software and updated a few options and menu to acknowledge such possibility. [Fabio Priuli] macs.cpp: Converted to use generic cartslot with fixed software configuration. Cleaned up loading and banking systems in the driver as a result. [Fabio Priuli]
Diffstat (limited to 'src/emu/clifront.cpp')
-rw-r--r--src/emu/clifront.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/clifront.cpp b/src/emu/clifront.cpp
index 02c27149231..803b8a4db76 100644
--- a/src/emu/clifront.cpp
+++ b/src/emu/clifront.cpp
@@ -715,6 +715,9 @@ void cli_frontend::listmedia(const char *gamename)
bool first = true;
for (const device_image_interface *imagedev = iter.first(); imagedev != nullptr; imagedev = iter.next())
{
+ if (!imagedev->user_loadable())
+ continue;
+
// extract the shortname with parentheses
std::string paren_shortname = string_format("(%s)", imagedev->brief_instance_name());