diff options
author | 2023-05-31 17:43:46 +0200 | |
---|---|---|
committer | 2023-06-01 01:43:46 +1000 | |
commit | 9f661e567c4528e7f7f662209e4b677f12b99875 (patch) | |
tree | 5dbd6f4cc4c274c296511dbde1d802d68dea4743 /src/devices/bus/snes/sfx.h | |
parent | a9935073709fffa95130ef1b7ea701c3a2325b9b (diff) |
emu/device.h: Removed device (READ|WRITE)_LINE_MEMBER in favor of explicit function signatures. (#11283) [Ryan Holtz]
Diffstat (limited to 'src/devices/bus/snes/sfx.h')
-rw-r--r-- | src/devices/bus/snes/sfx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/snes/sfx.h b/src/devices/bus/snes/sfx.h index 54df5a8018b..b46ca0c639d 100644 --- a/src/devices/bus/snes/sfx.h +++ b/src/devices/bus/snes/sfx.h @@ -20,7 +20,7 @@ protected: virtual void device_start() override; virtual void device_reset() override; - virtual DECLARE_WRITE_LINE_MEMBER(snes_extern_irq_w); + virtual void snes_extern_irq_w(int state); // additional reading and writing virtual uint8_t read_l(offs_t offset) override; |