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/x76f041.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/x76f041.c')
-rw-r--r-- | src/emu/machine/x76f041.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/x76f041.c b/src/emu/machine/x76f041.c index 6070a120a54..c42b5571b34 100644 --- a/src/emu/machine/x76f041.c +++ b/src/emu/machine/x76f041.c @@ -25,7 +25,7 @@ inline void ATTR_PRINTF(3,4) x76f041_device::verboselog(int n_level, const char va_start(v, s_fmt); vsprintf(buf, s_fmt, v); va_end(v); - logerror("x76f041 %s %s: %s", config.tag(), m_machine.describe_context(), buf); + logerror("x76f041 %s %s: %s", config.tag(), machine().describe_context(), buf); } } |