summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/cabal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/cabal.cpp')
-rw-r--r--src/mame/video/cabal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/cabal.cpp b/src/mame/video/cabal.cpp
index bc013275509..c1b34569689 100644
--- a/src/mame/video/cabal.cpp
+++ b/src/mame/video/cabal.cpp
@@ -50,7 +50,7 @@ void cabal_state::video_start()
/**************************************************************************/
-WRITE16_MEMBER(cabal_state::flipscreen_w)
+void cabal_state::flipscreen_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
if (ACCESSING_BITS_0_7)
{
@@ -62,13 +62,13 @@ WRITE16_MEMBER(cabal_state::flipscreen_w)
}
}
-WRITE16_MEMBER(cabal_state::background_videoram_w)
+void cabal_state::background_videoram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
COMBINE_DATA(&m_videoram[offset]);
m_background_layer->mark_tile_dirty(offset);
}
-WRITE16_MEMBER(cabal_state::text_videoram_w)
+void cabal_state::text_videoram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
COMBINE_DATA(&m_colorram[offset]);
m_text_layer->mark_tile_dirty(offset);