diff options
Diffstat (limited to 'src/devices/sound/esqpump.cpp')
-rw-r--r-- | src/devices/sound/esqpump.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/esqpump.cpp b/src/devices/sound/esqpump.cpp index 147f97786ca..496cc5c832a 100644 --- a/src/devices/sound/esqpump.cpp +++ b/src/devices/sound/esqpump.cpp @@ -14,8 +14,8 @@ const device_type ESQ_5505_5510_PUMP = &device_creator<esq_5505_5510_pump>; esq_5505_5510_pump::esq_5505_5510_pump(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, ESQ_5505_5510_PUMP, "ESQ_5505_5510_PUMP", tag, owner, clock, "esq_5505_5510_pump", __FILE__), - device_sound_interface(mconfig, *this), - m_esp_halted(true) + device_sound_interface(mconfig, *this), m_stream(nullptr), m_timer(nullptr), m_otis(nullptr), m_esp(nullptr), + m_esp_halted(true), ticks_spent_processing(0), samples_processed(0) { } |