summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/1943.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/1943.c')
-rw-r--r--src/mame/video/1943.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mame/video/1943.c b/src/mame/video/1943.c
index f217293e166..d13cf4e0c0d 100644
--- a/src/mame/video/1943.c
+++ b/src/mame/video/1943.c
@@ -121,21 +121,18 @@ void _1943_state::palette_init()
WRITE8_MEMBER(_1943_state::c1943_videoram_w)
{
-
m_videoram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(_1943_state::c1943_colorram_w)
{
-
m_colorram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
WRITE8_MEMBER(_1943_state::c1943_c804_w)
{
-
/* bits 0 and 1 are coin counters */
coin_counter_w(machine(), 0, data & 0x01);
coin_counter_w(machine(), 1, data & 0x02);
@@ -154,7 +151,6 @@ WRITE8_MEMBER(_1943_state::c1943_c804_w)
WRITE8_MEMBER(_1943_state::c1943_d806_w)
{
-
/* bit 4 enables bg 1 */
m_bg1_on = data & 0x10;