summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/snes/event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/snes/event.cpp')
-rw-r--r--src/devices/bus/snes/event.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/snes/event.cpp b/src/devices/bus/snes/event.cpp
index 387536ecb88..7131807edab 100644
--- a/src/devices/bus/snes/event.cpp
+++ b/src/devices/bus/snes/event.cpp
@@ -203,7 +203,7 @@ READ16_MEMBER( sns_pfest94_device::necdsp_data_r )
void sns_pfest94_device::dsp_prg_map_lorom(address_map &map)
{
- map(0x0000, 0x07ff).r(this, FUNC(sns_pfest94_device::necdsp_prg_r));
+ map(0x0000, 0x07ff).r(FUNC(sns_pfest94_device::necdsp_prg_r));
}
@@ -213,7 +213,7 @@ void sns_pfest94_device::dsp_prg_map_lorom(address_map &map)
void sns_pfest94_device::dsp_data_map_lorom(address_map &map)
{
- map(0x0000, 0x03ff).r(this, FUNC(sns_pfest94_device::necdsp_data_r));
+ map(0x0000, 0x03ff).r(FUNC(sns_pfest94_device::necdsp_data_r));
}