diff options
Diffstat (limited to 'src/devices/sound/es5503.cpp')
-rw-r--r-- | src/devices/sound/es5503.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/es5503.cpp b/src/devices/sound/es5503.cpp index bdabc86a2de..fccc2f3a6e4 100644 --- a/src/devices/sound/es5503.cpp +++ b/src/devices/sound/es5503.cpp @@ -55,7 +55,7 @@ static constexpr int resshifts[8] = { 9, 10, 11, 12, 13, 14, 15, 16 }; es5503_device::es5503_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, ES5503, tag, owner, clock), device_sound_interface(mconfig, *this), - device_rom_interface(mconfig, *this, 17), + device_rom_interface(mconfig, *this), m_irq_func(*this), m_adc_func(*this) { |