diff options
author | 2016-06-18 12:52:53 +0200 | |
---|---|---|
committer | 2016-06-18 15:32:15 +0200 | |
commit | 1d0e0ac12ab7498df6084123aed9eae614bfde01 (patch) | |
tree | 7c8537df05d52631b35faa9e58df08bb18d14067 /src/emu/dislot.cpp | |
parent | 78c39292171afa44cdd9121b4e525bceceacf534 (diff) |
remove all usages of tagmap
Diffstat (limited to 'src/emu/dislot.cpp')
-rw-r--r-- | src/emu/dislot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/dislot.cpp b/src/emu/dislot.cpp index 033ed05112b..416030834c8 100644 --- a/src/emu/dislot.cpp +++ b/src/emu/dislot.cpp @@ -46,7 +46,7 @@ void device_slot_interface::static_option_add(device_t &device, const char *name if (option != nullptr) throw emu_fatalerror("slot '%s' duplicate option '%s\n", device.tag(), name); - if (intf.m_options.count(name) != 0) throw add_exception(name); + if (intf.m_options.count(name) != 0) throw tag_add_exception(name); intf.m_options.emplace(std::make_pair(name, std::make_unique<device_slot_option>(name, devtype))); } |