summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/timeplt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/timeplt.cpp')
-rw-r--r--src/mame/video/timeplt.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/timeplt.cpp b/src/mame/video/timeplt.cpp
index 884cd33d967..e993d3c8434 100644
--- a/src/mame/video/timeplt.cpp
+++ b/src/mame/video/timeplt.cpp
@@ -151,14 +151,14 @@ VIDEO_START_MEMBER(timeplt_state,chkun)
*
*************************************/
-WRITE8_MEMBER(timeplt_state::videoram_w)
+void timeplt_state::videoram_w(offs_t offset, uint8_t data)
{
m_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(timeplt_state::colorram_w)
+void timeplt_state::colorram_w(offs_t offset, uint8_t data)
{
m_colorram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
@@ -175,7 +175,7 @@ WRITE_LINE_MEMBER(timeplt_state::video_enable_w)
m_video_enable = state;
}
-READ8_MEMBER(timeplt_state::scanline_r)
+uint8_t timeplt_state::scanline_r()
{
return m_screen->vpos();
}