diff options
author | 2010-01-21 06:05:57 +0000 | |
---|---|---|
committer | 2010-01-21 06:05:57 +0000 | |
commit | 1a2c20441f9bea50a435dbae1e0aeab991d4d78d (patch) | |
tree | cdb55bcc02838ab541632af76fcd77fa5008a8f5 /src/emu/mconfig.c | |
parent | a5668c2eb9d17e3e51f3230db68d3aec09c34507 (diff) |
Remove some aliases between CPUINFO_ and DEVINFO_ to help clarify
usage.
Also converted a few more places to use the new accessors.
Diffstat (limited to 'src/emu/mconfig.c')
-rw-r--r-- | src/emu/mconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/mconfig.c b/src/emu/mconfig.c index 0de82ffb5f4..1169d31c125 100644 --- a/src/emu/mconfig.c +++ b/src/emu/mconfig.c @@ -293,7 +293,7 @@ static void machine_config_detokenize(machine_config *config, const machine_conf if (depth == 0) for (device = config->devicelist.first(); device != NULL; device = device->next) { - tokens = (const machine_config_token *)device->get_config_ptr(DEVINFO_PTR_MACHINE_CONFIG); + tokens = device->machine_config_tokens(); if (tokens != NULL) machine_config_detokenize(config, tokens, device, depth + 1); } |