summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/kopunch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/kopunch.cpp')
-rw-r--r--src/mame/video/kopunch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/kopunch.cpp b/src/mame/video/kopunch.cpp
index 8715532a860..7160c48dbad 100644
--- a/src/mame/video/kopunch.cpp
+++ b/src/mame/video/kopunch.cpp
@@ -43,13 +43,13 @@ void kopunch_state::kopunch_palette(palette_device &palette) const
}
}
-WRITE8_MEMBER(kopunch_state::vram_fg_w)
+void kopunch_state::vram_fg_w(offs_t offset, uint8_t data)
{
m_vram_fg[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(kopunch_state::vram_bg_w)
+void kopunch_state::vram_bg_w(offs_t offset, uint8_t data)
{
m_vram_bg[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);