summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debugint
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2011-04-18 20:06:43 +0000
committer Aaron Giles <aaron@aarongiles.com>2011-04-18 20:06:43 +0000
commitfecfc465df47655554aeb0ea33eccb0f33d498a7 (patch)
tree842317d1595fa823a6bd290b7667a66d2fc09a81 /src/emu/debugint
parent4e7f194a638d0955374d2acf984017d5b1ed0e65 (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/debugint')
-rw-r--r--src/emu/debugint/debugint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debugint/debugint.c b/src/emu/debugint/debugint.c
index 82a393105f0..45351d302ca 100644
--- a/src/emu/debugint/debugint.c
+++ b/src/emu/debugint/debugint.c
@@ -186,7 +186,7 @@ public:
~DView()
{
this->target->debug_free(*this->container);
- m_machine->debug_view().free_view(*this->view);
+ machine().debug_view().free_view(*this->view);
}
running_machine &machine() const { assert(m_machine != NULL); return *m_machine; }