summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emuopts.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-08-06 21:47:53 +1000
committer Vas Crabb <vas@vastheman.com>2017-08-06 21:47:53 +1000
commit6ef4a1452dffe2f0e6fa39307bffd699bf4ae9f7 (patch)
tree2f945197f613d6887fa21449137d6dc976d58dfd /src/emu/emuopts.h
parent336a636aed43cb12fe0a2b6e6d364f1fe3f7e007 (diff)
Revert "(nw) Fixed random crashing when swapping one slot device with another."
This reverts commit 9968fc71b08b2a27e930d02333cb813977a37cbd. This hides the underlying problem that the options structure is getting out-of-sync. It's losing the image option but not the underlying option. Masking the problem doesn't fix it.
Diffstat (limited to 'src/emu/emuopts.h')
-rw-r--r--src/emu/emuopts.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emu/emuopts.h b/src/emu/emuopts.h
index faec84bc1a2..21df80b8a05 100644
--- a/src/emu/emuopts.h
+++ b/src/emu/emuopts.h
@@ -478,8 +478,6 @@ public:
bool has_slot_option(const std::string &device_name) const { return find_slot_option(device_name) ? true : false; }
const ::image_option &image_option(const std::string &device_name) const;
::image_option &image_option(const std::string &device_name);
- ::image_option *find_image_option(const std::string &device_name);
- const ::image_option *find_image_option(const std::string &device_name) const;
protected:
virtual void command_argument_processed() override;