summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pluto5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pluto5.cpp')
-rw-r--r--src/mame/drivers/pluto5.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/pluto5.cpp b/src/mame/drivers/pluto5.cpp
index bfb5cb114c9..8cc68881e40 100644
--- a/src/mame/drivers/pluto5.cpp
+++ b/src/mame/drivers/pluto5.cpp
@@ -206,7 +206,7 @@ public:
READ32_MEMBER(pluto5_state::pluto5_mem_r)
{
int pc = space.device().safe_pc();
- int cs = m68340_get_cs(m_maincpu, offset * 4);
+ int cs = m_maincpu->get_cs(offset * 4);
switch ( cs )
{
@@ -224,7 +224,7 @@ READ32_MEMBER(pluto5_state::pluto5_mem_r)
WRITE32_MEMBER(pluto5_state::pluto5_mem_w)
{
int pc = space.device().safe_pc();
- int cs = m68340_get_cs(m_maincpu, offset * 4);
+ int cs = m_maincpu->get_cs(offset * 4);
switch ( cs )
{