summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tumbleb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tumbleb.c')
-rw-r--r--src/mame/drivers/tumbleb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tumbleb.c b/src/mame/drivers/tumbleb.c
index ae1da97c978..53dfabe3433 100644
--- a/src/mame/drivers/tumbleb.c
+++ b/src/mame/drivers/tumbleb.c
@@ -3199,9 +3199,9 @@ DRIVER_INIT_MEMBER(tumbleb_state,fncywld)
READ16_MEMBER(tumbleb_state::bcstory_1a0_read)
{
- //mame_printf_debug("bcstory_io %06x\n",cpu_get_pc(&space.device()));
+ //mame_printf_debug("bcstory_io %06x\n",space.device().safe_pc());
- if (cpu_get_pc(&space.device())==0x0560) return 0x1a0;
+ if (space.device().safe_pc()==0x0560) return 0x1a0;
else return ioport("SYSTEM")->read();
}