summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gundealr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gundealr.cpp')
-rw-r--r--src/mame/video/gundealr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/gundealr.cpp b/src/mame/video/gundealr.cpp
index e9ec0002e96..cd8bfbe4ef2 100644
--- a/src/mame/video/gundealr.cpp
+++ b/src/mame/video/gundealr.cpp
@@ -66,19 +66,19 @@ void gundealr_state::video_start()
***************************************************************************/
-WRITE8_MEMBER(gundealr_state::bg_videoram_w)
+void gundealr_state::bg_videoram_w(offs_t offset, uint8_t data)
{
m_bg_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset / 2);
}
-WRITE8_MEMBER(gundealr_state::fg_videoram_w)
+void gundealr_state::fg_videoram_w(offs_t offset, uint8_t data)
{
m_fg_videoram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset / 2);
}
-WRITE8_MEMBER(gundealr_state::paletteram_w)
+void gundealr_state::paletteram_w(offs_t offset, uint8_t data)
{
int r,g,b,val;