summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/kchamp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/kchamp.cpp')
-rw-r--r--src/mame/video/kchamp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/kchamp.cpp b/src/mame/video/kchamp.cpp
index 11b39e43de2..b213ef78741 100644
--- a/src/mame/video/kchamp.cpp
+++ b/src/mame/video/kchamp.cpp
@@ -2,7 +2,7 @@
// copyright-holders:Ernesto Corvi
/***************************************************************************
- video.c
+ kchamp.cpp
Functions to emulate the video hardware of the machine.
@@ -25,13 +25,13 @@ void kchamp_state::kchamp_palette(palette_device &palette) const
}
}
-WRITE8_MEMBER(kchamp_state::kchamp_videoram_w)
+void kchamp_state::kchamp_videoram_w(offs_t offset, uint8_t data)
{
m_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(kchamp_state::kchamp_colorram_w)
+void kchamp_state::kchamp_colorram_w(offs_t offset, uint8_t data)
{
m_colorram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);