summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/epos.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-10 13:19:57 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-10 13:19:57 +0100
commit96490888396584845d0fd923b44c3b7611e56f8e (patch)
tree66d6bf4cb72e6e1f5f438f1fee40c5c8ed72b274 /src/mame/video/epos.cpp
parent283fbf13a4c8c07e3e45fdae316842d7a8608f2f (diff)
modernized bookkeeping manager (nw)
Diffstat (limited to 'src/mame/video/epos.cpp')
-rw-r--r--src/mame/video/epos.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/epos.cpp b/src/mame/video/epos.cpp
index 5c2f2b70ab8..eeabb286365 100644
--- a/src/mame/video/epos.cpp
+++ b/src/mame/video/epos.cpp
@@ -67,7 +67,7 @@ WRITE8_MEMBER(epos_state::epos_port_1_w)
set_led_status(machine(), 0, (data >> 0) & 0x01);
set_led_status(machine(), 1, (data >> 1) & 0x01);
- coin_counter_w(machine(), 0, (data >> 2) & 0x01);
+ machine().bookkeeping().coin_counter_w(0, (data >> 2) & 0x01);
m_palette = (data >> 3) & 0x01;
}