diff options
author | 2011-03-28 09:10:17 +0000 | |
---|---|---|
committer | 2011-03-28 09:10:17 +0000 | |
commit | af071893a63485d60b1c52d9f15501d2213c8e5e (patch) | |
tree | 16635e21ef67490e0e585e45e4c8698ff520d073 /src/emu/cpu/drcuml.c | |
parent | 58f70e918446d6940d8192adc240b4d60be66c3d (diff) |
Cleanup of machine.h. Shuffled some fields around, and moved several
to private member variables with accessors:
machine->m_respool ==> machine->respool()
machine->config ==> machine->config()
machine->gamedrv ==> machine->system()
machine->m_regionlist ==> machine->first_region()
machine->sample_rate ==> machine->sample_rate()
Also converted internal lists to use simple_list.
Diffstat (limited to 'src/emu/cpu/drcuml.c')
-rw-r--r-- | src/emu/cpu/drcuml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/drcuml.c b/src/emu/cpu/drcuml.c index a921999d2d4..1f6e48fe0d9 100644 --- a/src/emu/cpu/drcuml.c +++ b/src/emu/cpu/drcuml.c @@ -154,8 +154,8 @@ drcuml_state::drcuml_state(device_t &device, drc_cache &cache, UINT32 flags, int *static_cast<drcbe_interface *>(auto_alloc(device.machine, drcbe_c(*this, device, cache, flags, modes, addrbits, ignorebits))) : *static_cast<drcbe_interface *>(auto_alloc(device.machine, drcbe_native(*this, device, cache, flags, modes, addrbits, ignorebits)))), m_umllog(NULL), - m_blocklist(device.machine->m_respool), - m_symlist(device.machine->m_respool) + m_blocklist(device.machine->respool()), + m_symlist(device.machine->respool()) { // if we're to log, create the logfile if (flags & DRCUML_OPTION_LOG_UML) |