diff options
author | 2018-05-06 19:19:48 +1000 | |
---|---|---|
committer | 2018-05-06 19:19:48 +1000 | |
commit | 138b60e6c6078260b12becbc6706fa0523eea506 (patch) | |
tree | 6c5bb013da8e6ea0500148169adf2c8436e900ab /src/emu/dislot.cpp | |
parent | 495ec11fdf79e06fb5102b395b7316fa273006a7 (diff) |
(nw) misc follow-up
Fix MT06964
Fix µPD7759 class hierarchy, and reset callback before resolving it
(fixed assert in Sega C2)
Remove some more low-value device add indirection macros, default some
more clocks
Make cards inherit clock from slot by default
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 5086a658ab8..e5bb4cff0d3 100644 --- a/src/emu/dislot.cpp +++ b/src/emu/dislot.cpp @@ -17,7 +17,7 @@ device_slot_interface::device_slot_interface(const machine_config &mconfig, device_t &device) : device_interface(device, "slot"), - m_default_clock(0), // FIXME: zero to preserve behaviour - should probably be DERIVED_CLOCK(1, 1) + m_default_clock(DERIVED_CLOCK(1, 1)), m_default_option(nullptr), m_fixed(false), m_card_device(nullptr) |