diff options
author | 2008-11-06 15:44:58 +0000 | |
---|---|---|
committer | 2008-11-06 15:44:58 +0000 | |
commit | 1228d0ad9ea3fa2fb7a3b88357ba286247fc8826 (patch) | |
tree | a0bca1897182a31489079ff026fe569efad0bda1 /src/emu/cpu/m68000/m68kcpu.c | |
parent | 3d15bc42d037f31887e0d245edd1004a59e9ba4b (diff) |
Fixed a few issues caught by an MSVC compile (why doesn't gcc complain??)
Diffstat (limited to 'src/emu/cpu/m68000/m68kcpu.c')
-rw-r--r-- | src/emu/cpu/m68000/m68kcpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/m68000/m68kcpu.c b/src/emu/cpu/m68000/m68kcpu.c index c1859cd551c..7a27ce02673 100644 --- a/src/emu/cpu/m68000/m68kcpu.c +++ b/src/emu/cpu/m68000/m68kcpu.c @@ -780,7 +780,7 @@ int m68k_execute(m68ki_cpu_core *m68k, int num_cycles) m68ki_trace_t1(); /* auto-disable (see m68kcpu.h) */ /* Set the address space for reads */ - m68ki_use_data_space(); /* auto-disable (see m68kcpu.h) */ + m68ki_use_data_space(m68k); /* auto-disable (see m68kcpu.h) */ /* Call external hook to peek at CPU */ debugger_instruction_hook(Machine, REG_PC); |