diff options
| author | 2010-01-12 06:54:57 +0000 | |
|---|---|---|
| committer | 2010-01-12 06:54:57 +0000 | |
| commit | 470f843262139e7bbfbf3c48649b84c3e0357ce6 (patch) | |
| tree | c2dc37998e3ac8fee68e017dc52c5c7a18f42f36 /src/emu/debug/debugcmd.c | |
| parent | 46b81c390e347598bc3051ceb69a968f1cc2735d (diff) | |
Within src/emu, basic conversions:
devtag_get_device ... machine->device()
memory_find_address_space ... device->space()
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 073aded7a87..b7835084ca8 100644 --- a/src/emu/debug/debugcmd.c +++ b/src/emu/debug/debugcmd.c @@ -530,7 +530,7 @@ int debug_command_parameter_cpu(running_machine *machine, const char *param, con } /* first look for a tag match */ - *result = devtag_get_device(machine, param); + *result = machine->device(param); if (*result != NULL) return TRUE; |
