summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2015-06-24 09:11:05 +0200
committer Olivier Galibert <galibert@pobox.com>2015-06-24 09:11:05 +0200
commit1662e179be1c4dd81a654f6307da99a23a7bc152 (patch)
tree82ec965b8d11369c945eb0b4bcdf6cd358c4d1f5
parent81689f8a5addf4509d1710899a5fd1556fd34a7b (diff)
*duh*
-rw-r--r--src/emu/debug/debugcmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.c b/src/emu/debug/debugcmd.c
index 580da3b5119..d7e5f48f79c 100644
--- a/src/emu/debug/debugcmd.c
+++ b/src/emu/debug/debugcmd.c
@@ -2467,7 +2467,7 @@ static void execute_dasm(running_machine &machine, int ref, int params, const ch
if (!debug_command_parameter_cpu_space(machine, (params > 4) ? param[4] : NULL, AS_PROGRAM, space))
return;
if (!debug_command_parameter_cpu_space(machine, (params > 4) ? param[4] : NULL, AS_DECRYPTED_OPCODES, decrypted_space))
- space = decrypted_space;
+ decrypted_space = space;
/* determine the width of the bytes */
cpu_device *cpudevice = downcast<cpu_device *>(&space->device());