summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/photon2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/photon2.cpp')
-rw-r--r--src/mame/drivers/photon2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/photon2.cpp b/src/mame/drivers/photon2.cpp
index 71ea701d102..086e3c58cc6 100644
--- a/src/mame/drivers/photon2.cpp
+++ b/src/mame/drivers/photon2.cpp
@@ -269,11 +269,11 @@ void photon2_state::spectrum_io(address_map &map)
{
map.global_mask(0xff);
map(0x1f, 0x1f).portr("JOY");
- map(0x5b, 0x5b).portr("COIN").w(this, FUNC(photon2_state::misc_w));
- map(0x7a, 0x7a).w(this, FUNC(photon2_state::membank_w));
+ map(0x5b, 0x5b).portr("COIN").w(FUNC(photon2_state::misc_w));
+ map(0x7a, 0x7a).w(FUNC(photon2_state::membank_w));
map(0x7b, 0x7b).nopw(); // unknown write
- map(0x7e, 0x7e).w(this, FUNC(photon2_state::membank_w));
- map(0xfe, 0xfe).rw(this, FUNC(photon2_state::fe_r), FUNC(photon2_state::fe_w));
+ map(0x7e, 0x7e).w(FUNC(photon2_state::membank_w));
+ map(0xfe, 0xfe).rw(FUNC(photon2_state::fe_r), FUNC(photon2_state::fe_w));
}
/*************************************