summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/solomon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/solomon.c')
-rw-r--r--src/mame/video/solomon.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mame/video/solomon.c b/src/mame/video/solomon.c
index c34bd5f5574..0190dbd0d12 100644
--- a/src/mame/video/solomon.c
+++ b/src/mame/video/solomon.c
@@ -3,28 +3,24 @@
WRITE8_MEMBER(solomon_state::solomon_videoram_w)
{
-
m_videoram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(solomon_state::solomon_colorram_w)
{
-
m_colorram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(solomon_state::solomon_videoram2_w)
{
-
m_videoram2[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(solomon_state::solomon_colorram2_w)
{
-
m_colorram2[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
@@ -59,7 +55,6 @@ TILE_GET_INFO_MEMBER(solomon_state::get_fg_tile_info)
void solomon_state::video_start()
{
-
m_bg_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(solomon_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS,
8, 8, 32, 32);