summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/segaic16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/segaic16.cpp')
-rw-r--r--src/mame/machine/segaic16.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/segaic16.cpp b/src/mame/machine/segaic16.cpp
index 7028364044a..1e6431cb0a3 100644
--- a/src/mame/machine/segaic16.cpp
+++ b/src/mame/machine/segaic16.cpp
@@ -75,7 +75,7 @@ READ16_MEMBER( sega_16bit_common_base::open_bus_r )
// read original encrypted memory at that address
m_open_bus_recurse = true;
- uint16_t result = space.read_word(space.device().safe_pc());
+ uint16_t result = space.read_word(space.device().state().pc());
m_open_bus_recurse = false;
return result;
}