summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2017-02-27 11:20:38 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2017-02-27 11:20:38 +1100
commit19f34d9cf8107f18e0ef502f5353c1fc594e353f (patch)
tree1a1e3ebf69f92bf83f14b2c98c7bbe65961ff8de
parent80f207f79d30456612de4cdfdd9cdf8eaa2f89e0 (diff)
(nw)This should fix MT 06107 but there's plenty of time for testing.
-rw-r--r--src/emu/softlist_dev.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/emu/softlist_dev.cpp b/src/emu/softlist_dev.cpp
index 039f8852e69..824ab75d0ef 100644
--- a/src/emu/softlist_dev.cpp
+++ b/src/emu/softlist_dev.cpp
@@ -377,9 +377,7 @@ device_image_interface *software_list_device::find_mountable_image(const machine
const char *interface = image.image_interface();
if (interface != nullptr && part.matches_interface(interface))
{
- // mount only if not already mounted
- const char *option = mconfig.options().value(image.brief_instance_name());
- if (*option == '\0' && !image.filename())
+ if (!image.filename())
return &image;
}
}