diff options
| author | 2008-04-02 08:33:06 +0000 | |
|---|---|---|
| committer | 2008-04-02 08:33:06 +0000 | |
| commit | bddaca5de292d9c2177bbbacdfa85224f2763b01 (patch) | |
| tree | 93c616353d23e807aab34bf5c31c344a2aaa6b40 /src/emu/debug | |
| parent | 86e9f195a9e8b89825f3a80667ed4135613eea19 (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')
| -rw-r--r-- | src/emu/debug/debugcon.c | 2 | ||||
| -rw-r--r-- | src/emu/debug/debugcpu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcon.c b/src/emu/debug/debugcon.c index b83a9e58d54..a4b710bf703 100644 --- a/src/emu/debug/debugcon.c +++ b/src/emu/debug/debugcon.c @@ -88,7 +88,7 @@ void debug_console_init(running_machine *machine) /* print the opening lines */ debug_console_printf("MAME new debugger version %s\n", build_version); - debug_console_printf("Currently targeting %s (%s)\n", Machine->gamedrv->name, Machine->gamedrv->description); + debug_console_printf("Currently targeting %s (%s)\n", machine->gamedrv->name, machine->gamedrv->description); /* request callback upon exiting */ add_exit_callback(machine, debug_console_exit); 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) |
