diff options
Diffstat (limited to 'src/devices/bus/nes/event.cpp')
-rw-r--r-- | src/devices/bus/nes/event.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/nes/event.cpp b/src/devices/bus/nes/event.cpp index d32bc631f9b..e8cc13e44bc 100644 --- a/src/devices/bus/nes/event.cpp +++ b/src/devices/bus/nes/event.cpp @@ -37,11 +37,11 @@ const device_type NES_EVENT = &device_creator<nes_event_device>; nes_event_device::nes_event_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : nes_sxrom_device(mconfig, NES_EVENT, "NES Cart Event PCB", tag, owner, clock, "nes_event", __FILE__), - m_dsw(*this, "DIPSW"), - m_nwc_init(0), - event_timer(nullptr), - m_timer_count(0), - m_timer_on(0), + m_dsw(*this, "DIPSW"), + m_nwc_init(0), + event_timer(nullptr), + m_timer_count(0), + m_timer_on(0), m_timer_enabled(0) { } |