diff options
author | 2011-04-18 20:06:43 +0000 | |
---|---|---|
committer | 2011-04-18 20:06:43 +0000 | |
commit | fecfc465df47655554aeb0ea33eccb0f33d498a7 (patch) | |
tree | 842317d1595fa823a6bd290b7667a66d2fc09a81 /src/emu/machine/8237dma.c | |
parent | 4e7f194a638d0955374d2acf984017d5b1ed0e65 (diff) |
Switch from m_machine to machine() everywhere. In some cases this
meant adding a machine() accessor but it's worth it for consistency.
This will allow future changes from reference to pointer to happen
transparently for devices. [Aaron Giles]
Simple S&R:
m_machine( *[^ (!=;])
machine()\1
Diffstat (limited to 'src/emu/machine/8237dma.c')
-rw-r--r-- | src/emu/machine/8237dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/8237dma.c b/src/emu/machine/8237dma.c index 1dde83781ec..0648e2925ff 100644 --- a/src/emu/machine/8237dma.c +++ b/src/emu/machine/8237dma.c @@ -124,7 +124,7 @@ void i8237_device::device_start() devcb_resolve_write_line(&m_chan[i].m_out_dack_func, &m_config.m_out_dack_func[i], this); } - m_timer = m_machine.scheduler().timer_alloc(FUNC(i8237_timerproc_callback), (void *)this); + m_timer = machine().scheduler().timer_alloc(FUNC(i8237_timerproc_callback), (void *)this); } |