From 1662e179be1c4dd81a654f6307da99a23a7bc152 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Wed, 24 Jun 2015 09:11:05 +0200 Subject: [PATCH] *duh* --- src/emu/debug/debugcmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(&space->device());