summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/fgoal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/fgoal.cpp')
-rw-r--r--src/mame/video/fgoal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/fgoal.cpp b/src/mame/video/fgoal.cpp
index 5f4632e1b45..fb9de83dec5 100644
--- a/src/mame/video/fgoal.cpp
+++ b/src/mame/video/fgoal.cpp
@@ -10,19 +10,19 @@
#include "includes/fgoal.h"
-WRITE8_MEMBER(fgoal_state::color_w)
+void fgoal_state::color_w(uint8_t data)
{
m_current_color = data & 3;
}
-WRITE8_MEMBER(fgoal_state::ypos_w)
+void fgoal_state::ypos_w(uint8_t data)
{
m_ypos = data;
}
-WRITE8_MEMBER(fgoal_state::xpos_w)
+void fgoal_state::xpos_w(uint8_t data)
{
m_xpos = data;
}