summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/suna8.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-02 17:08:29 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-02 17:48:20 +0100
commit3e1c1842c8be48973643ad747520589a0dc96cc9 (patch)
tree63385af8c0229b70c551c657e3fd041265c9cb84 /src/mame/drivers/suna8.cpp
parent28c582390a80ada2c6db7925dbd1dcfe73b2b389 (diff)
Finish the non-ambiguous ones (nw)
Diffstat (limited to 'src/mame/drivers/suna8.cpp')
-rw-r--r--src/mame/drivers/suna8.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/suna8.cpp b/src/mame/drivers/suna8.cpp
index 36f3ea5cb85..3bdb3739b39 100644
--- a/src/mame/drivers/suna8.cpp
+++ b/src/mame/drivers/suna8.cpp
@@ -526,7 +526,7 @@ READ8_MEMBER(suna8_state::hardhead_ip_r)
case 2: return ioport("DSW1")->read();
case 3: return ioport("DSW2")->read();
default:
- logerror("CPU #0 - PC %04X: Unknown IP read: %02X\n", space.device().safe_pc(), *m_hardhead_ip);
+ logerror("CPU #0 - PC %04X: Unknown IP read: %02X\n", m_maincpu->pc(), *m_hardhead_ip);
return 0xff;
}
}