diff options
| author | 2010-01-06 13:26:30 +0000 | |
|---|---|---|
| committer | 2010-01-06 13:26:30 +0000 | |
| commit | a406d628ff583793027c2e8cfa00650f6abcd0b4 (patch) | |
| tree | 2076e600f64b4c0cb4f96a4b4b044eea3b550be1 /src/emu/debug/debugcmd.c | |
| parent | fb8599a36c74c106bda3166ece33c7d96379ed0c (diff) | |
Replaced all occurrences of cputag_get_cpu with devtag_get_device: the former function was just an alias and now cpus are no different from other devices
Removed cputag_get_cpu and cputag_reset (another alias, not even used in the source) from cpuexec.h
Diffstat (limited to 'src/emu/debug/debugcmd.c')
| -rw-r--r-- | src/emu/debug/debugcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.c b/src/emu/debug/debugcmd.c index 4f00d1dfd21..bc661c1a10e 100644 --- a/src/emu/debug/debugcmd.c +++ b/src/emu/debug/debugcmd.c @@ -529,7 +529,7 @@ int debug_command_parameter_cpu(running_machine *machine, const char *param, con } /* first look for a tag match */ - *result = cputag_get_cpu(machine, param); + *result = devtag_get_device(machine, param); if (*result != NULL) return TRUE; |
