summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-04-02 08:33:06 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-04-02 08:33:06 +0000
commitbddaca5de292d9c2177bbbacdfa85224f2763b01 (patch)
tree93c616353d23e807aab34bf5c31c344a2aaa6b40 /src/emu/debug/debugcpu.c
parent86e9f195a9e8b89825f3a80667ed4135613eea19 (diff)
From: Oliver Stoeneberg [mailto:oliverst@online.de]
Subject: Machine -> machine cleanups This patch changes "Machine" to "machine", when the runnin-machine parameter is already available. In some cases I could even remove the dprecat.h. I will look for some occurances where it can be easily changed and afterward take a step at adding the running_machine parameter in a few places.
Diffstat (limited to 'src/emu/debug/debugcpu.c')
-rw-r--r--src/emu/debug/debugcpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcpu.c b/src/emu/debug/debugcpu.c
index 5640fe483a7..9ca8e278108 100644
--- a/src/emu/debug/debugcpu.c
+++ b/src/emu/debug/debugcpu.c
@@ -209,7 +209,7 @@ void debug_cpu_init(running_machine *machine)
/* loop over CPUs and build up their info */
for (cpunum = 0; cpunum < MAX_CPU; cpunum++)
{
- cpu_type cputype = Machine->config->cpu[cpunum].type;
+ cpu_type cputype = machine->config->cpu[cpunum].type;
/* if this is a dummy, stop looking */
if (cputype == CPU_DUMMY)