summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/toaplan2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/toaplan2.cpp')
-rw-r--r--src/mame/drivers/toaplan2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/toaplan2.cpp b/src/mame/drivers/toaplan2.cpp
index 445e08fc2c5..2bfab0c13e7 100644
--- a/src/mame/drivers/toaplan2.cpp
+++ b/src/mame/drivers/toaplan2.cpp
@@ -729,8 +729,8 @@ WRITE8_MEMBER(toaplan2_state::raizing_z80_bankswitch_w)
WRITE8_MEMBER(toaplan2_state::raizing_oki_bankswitch_w)
{
- m_nmk112->okibank_w(space, offset, data & 0x0f);
- m_nmk112->okibank_w(space, offset + 1, (data >> 4) & 0x0f);
+ m_nmk112->okibank_w(offset, data & 0x0f);
+ m_nmk112->okibank_w(offset + 1, (data >> 4) & 0x0f);
}