summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bogeyman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bogeyman.c')
-rw-r--r--src/mame/video/bogeyman.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mame/video/bogeyman.c b/src/mame/video/bogeyman.c
index 59870e09d3c..51c2ad0b2ae 100644
--- a/src/mame/video/bogeyman.c
+++ b/src/mame/video/bogeyman.c
@@ -38,28 +38,24 @@ void bogeyman_state::palette_init()
WRITE8_MEMBER(bogeyman_state::bogeyman_videoram_w)
{
-
m_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(bogeyman_state::bogeyman_colorram_w)
{
-
m_colorram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(bogeyman_state::bogeyman_videoram2_w)
{
-
m_videoram2[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(bogeyman_state::bogeyman_colorram2_w)
{
-
m_colorram2[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
@@ -147,7 +143,6 @@ static void draw_sprites( running_machine &machine, bitmap_ind16 &bitmap, const
UINT32 bogeyman_state::screen_update_bogeyman(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
-
m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
draw_sprites(machine(), bitmap, cliprect);
m_fg_tilemap->draw(bitmap, cliprect, 0, 0);