summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devintrf.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-01-21 03:56:53 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-01-21 03:56:53 +0000
commita5668c2eb9d17e3e51f3230db68d3aec09c34507 (patch)
tree006e76de745dde9508f521d2d6998a00a979de1e /src/emu/devintrf.c
parentc12ffe8e5f3932e69e9139dc362a0f4d124ce9ed (diff)
Made direct accessors for device configuration state. Currently they
just call through to the get info function. Removed old macros that wrapped calls.
Diffstat (limited to 'src/emu/devintrf.c')
-rw-r--r--src/emu/devintrf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/devintrf.c b/src/emu/devintrf.c
index e6f3445fdb8..d8021df3f97 100644
--- a/src/emu/devintrf.c
+++ b/src/emu/devintrf.c
@@ -330,7 +330,7 @@ astring &device_config::siblingtag(astring &dest, const char *_tag) const
-------------------------------------------------*/
running_device::running_device(running_machine &_machine, const device_config &_config)
- : _baseconfig(_config),
+ : m_baseconfig(_config),
machine(&_machine),
next(NULL),
owner((_config.owner != NULL) ? _machine.devicelist.find(_config.owner->tag) : NULL),