summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/labyrunr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/labyrunr.cpp')
-rw-r--r--src/mame/video/labyrunr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/labyrunr.cpp b/src/mame/video/labyrunr.cpp
index 8dfd6b2ca34..24f4cfba8a7 100644
--- a/src/mame/video/labyrunr.cpp
+++ b/src/mame/video/labyrunr.cpp
@@ -127,13 +127,13 @@ void labyrunr_state::video_start()
***************************************************************************/
-WRITE8_MEMBER(labyrunr_state::labyrunr_vram1_w)
+void labyrunr_state::labyrunr_vram1_w(offs_t offset, uint8_t data)
{
m_videoram1[offset] = data;
m_layer0->mark_tile_dirty(offset & 0x3ff);
}
-WRITE8_MEMBER(labyrunr_state::labyrunr_vram2_w)
+void labyrunr_state::labyrunr_vram2_w(offs_t offset, uint8_t data)
{
m_videoram2[offset] = data;
m_layer1->mark_tile_dirty(offset & 0x3ff);