diff options
author | 2012-09-11 16:29:26 +0000 | |
---|---|---|
committer | 2012-09-11 16:29:26 +0000 | |
commit | d1a2c2e7a36796de9619ec4d9f81ea755178412d (patch) | |
tree | e210e894a1cda37c5407eaa0ff5a1e89b97cbfe3 /src/mess/drivers/mpf1.c | |
parent | 0aa418e85b7f7aad5088bc96c9da0c371b15b2f2 (diff) |
Add ambiguous execute() and memory() methods to the
device_execute/memory_interfaces respectively in order
to catch unnecessary usage of the corresponding device_t
methods. Removed all existing redundant usage.
[Aaron Giles]
Diffstat (limited to 'src/mess/drivers/mpf1.c')
-rw-r--r-- | src/mess/drivers/mpf1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/mpf1.c b/src/mess/drivers/mpf1.c index 9533fecd929..2ff0e70abeb 100644 --- a/src/mess/drivers/mpf1.c +++ b/src/mess/drivers/mpf1.c @@ -479,7 +479,7 @@ DIRECT_UPDATE_MEMBER(mpf1_state::mpf1_direct_update_handler) DRIVER_INIT_MEMBER(mpf1_state,mpf1) { - m_maincpu->memory().space(AS_PROGRAM)->set_direct_update_handler(direct_update_delegate(FUNC(mpf1_state::mpf1_direct_update_handler), this)); + m_maincpu->space(AS_PROGRAM)->set_direct_update_handler(direct_update_delegate(FUNC(mpf1_state::mpf1_direct_update_handler), this)); } COMP( 1979, mpf1, 0, 0, mpf1, mpf1, mpf1_state, mpf1, "Multitech", "Micro Professor 1", 0) |