summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/scotrsht.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/scotrsht.cpp')
-rw-r--r--src/mame/video/scotrsht.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/scotrsht.cpp b/src/mame/video/scotrsht.cpp
index 5614231e09d..dc8083fe519 100644
--- a/src/mame/video/scotrsht.cpp
+++ b/src/mame/video/scotrsht.cpp
@@ -33,19 +33,19 @@ void scotrsht_state::scotrsht_palette(palette_device &palette) const
}
}
-WRITE8_MEMBER(scotrsht_state::videoram_w)
+void scotrsht_state::videoram_w(offs_t offset, uint8_t data)
{
m_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(scotrsht_state::colorram_w)
+void scotrsht_state::colorram_w(offs_t offset, uint8_t data)
{
m_colorram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(scotrsht_state::charbank_w)
+void scotrsht_state::charbank_w(uint8_t data)
{
if (m_charbank != (data & 0x01))
{
@@ -56,7 +56,7 @@ WRITE8_MEMBER(scotrsht_state::charbank_w)
// other bits unknown
}
-WRITE8_MEMBER(scotrsht_state::palettebank_w)
+void scotrsht_state::palettebank_w(uint8_t data)
{
if (m_palette_bank != ((data & 0x70) >> 4))
{