summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/meadows.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/meadows.cpp')
-rw-r--r--src/mame/video/meadows.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/video/meadows.cpp b/src/mame/video/meadows.cpp
index ee91bc511a0..353ba892d64 100644
--- a/src/mame/video/meadows.cpp
+++ b/src/mame/video/meadows.cpp
@@ -47,10 +47,9 @@ void meadows_state::video_start()
*
*************************************/
-WRITE8_MEMBER(meadows_state::meadows_videoram_w)
+void meadows_state::meadows_videoram_w(offs_t offset, uint8_t data)
{
- uint8_t *videoram = m_videoram;
- videoram[offset] = data;
+ m_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
@@ -62,7 +61,7 @@ WRITE8_MEMBER(meadows_state::meadows_videoram_w)
*
*************************************/
-WRITE8_MEMBER(meadows_state::meadows_spriteram_w)
+void meadows_state::meadows_spriteram_w(offs_t offset, uint8_t data)
{
// m_screen->update_now();
m_screen->update_partial(m_screen->vpos());