summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/x68k.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/x68k.cpp')
-rw-r--r--src/mame/drivers/x68k.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/x68k.cpp b/src/mame/drivers/x68k.cpp
index 92d848b2348..268e903a736 100644
--- a/src/mame/drivers/x68k.cpp
+++ b/src/mame/drivers/x68k.cpp
@@ -1045,12 +1045,12 @@ WRITE8_MEMBER(x68k_state::adpcm_w)
{
switch(offset)
{
- case 0x00:
- m_okim6258->ctrl_w(space,0,data);
- break;
- case 0x01:
- m_okim6258->data_w(space,0,data);
- break;
+ case 0x00:
+ m_okim6258->ctrl_w(data);
+ break;
+ case 0x01:
+ m_okim6258->data_w(data);
+ break;
}
}