summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bagman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bagman.cpp')
-rw-r--r--src/mame/video/bagman.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/bagman.cpp b/src/mame/video/bagman.cpp
index 43a137f592f..a520555e60e 100644
--- a/src/mame/video/bagman.cpp
+++ b/src/mame/video/bagman.cpp
@@ -2,7 +2,7 @@
// copyright-holders:Nicola Salmoria
/***************************************************************************
- bagman.c
+ bagman.cpp
Functions to emulate the video hardware of the machine.
@@ -13,13 +13,13 @@
#include "includes/bagman.h"
-WRITE8_MEMBER(bagman_state::videoram_w)
+void bagman_state::videoram_w(offs_t offset, uint8_t data)
{
m_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(bagman_state::colorram_w)
+void bagman_state::colorram_w(offs_t offset, uint8_t data)
{
m_colorram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);