summaryrefslogtreecommitdiff
path: root/m68k_to_x86.c
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-06-29 17:15:08 -0700
committerMike Pavone <pavone@retrodev.com>2013-06-29 17:15:08 -0700
commit48718d1f339e263fb52a35a7a5230d32491b78b8 (patch)
tree16eb423306ce41301c188ffa4ed8193b438e334b /m68k_to_x86.c
parent6183aae8b8ff8deb39d5e177896ef62bc72df7c0 (diff)
Add support for loading GST format savestates
Diffstat (limited to 'm68k_to_x86.c')
-rw-r--r--m68k_to_x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/m68k_to_x86.c b/m68k_to_x86.c
index b35494e..6ebc96d 100644
--- a/m68k_to_x86.c
+++ b/m68k_to_x86.c
@@ -4127,7 +4127,7 @@ void remove_breakpoint(m68k_context * context, uint32_t address)
void start_68k_context(m68k_context * context, uint32_t address)
{
- uint8_t * addr = get_native_address(context->native_code_map, address);
+ uint8_t * addr = get_native_address_trans(context, address);
m68k_start_context(addr, context);
}