summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bogeyman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/bogeyman.cpp')
-rw-r--r--src/mame/drivers/bogeyman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/bogeyman.cpp b/src/mame/drivers/bogeyman.cpp
index a8a83bdc7c0..5c806149779 100644
--- a/src/mame/drivers/bogeyman.cpp
+++ b/src/mame/drivers/bogeyman.cpp
@@ -25,12 +25,12 @@
// Sound section is copied from Mysterious Stones driver by Nicola, Mike, Brad
-WRITE8_MEMBER(bogeyman_state::ay8910_latch_w)
+void bogeyman_state::ay8910_latch_w(uint8_t data)
{
m_psg_latch = data;
}
-WRITE8_MEMBER(bogeyman_state::ay8910_control_w)
+void bogeyman_state::ay8910_control_w(uint8_t data)
{
// bit 0 is flipscreen
flip_screen_set(data & 0x01);