summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/scotrsht.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/scotrsht.c')
-rw-r--r--src/mame/video/scotrsht.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mame/video/scotrsht.c b/src/mame/video/scotrsht.c
index b2ef70cc20b..23e13f4497c 100644
--- a/src/mame/video/scotrsht.c
+++ b/src/mame/video/scotrsht.c
@@ -39,21 +39,18 @@ void scotrsht_state::palette_init()
WRITE8_MEMBER(scotrsht_state::scotrsht_videoram_w)
{
-
m_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(scotrsht_state::scotrsht_colorram_w)
{
-
m_colorram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(scotrsht_state::scotrsht_charbank_w)
{
-
if (m_charbank != (data & 0x01))
{
m_charbank = data & 0x01;
@@ -65,7 +62,6 @@ WRITE8_MEMBER(scotrsht_state::scotrsht_charbank_w)
WRITE8_MEMBER(scotrsht_state::scotrsht_palettebank_w)
{
-
if (m_palette_bank != ((data & 0x70) >> 4))
{
m_palette_bank = ((data & 0x70) >> 4);
@@ -127,7 +123,6 @@ static void draw_sprites(running_machine &machine, bitmap_ind16 &bitmap, const r
void scotrsht_state::video_start()
{
-
m_bg_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(scotrsht_state::scotrsht_get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 64, 32);
m_bg_tilemap->set_scroll_cols(64);