diff options
Diffstat (limited to 'src/mame/irem/m14.cpp')
-rw-r--r-- | src/mame/irem/m14.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mame/irem/m14.cpp b/src/mame/irem/m14.cpp index 08f5fd80479..bdd2165358a 100644 --- a/src/mame/irem/m14.cpp +++ b/src/mame/irem/m14.cpp @@ -155,8 +155,6 @@ TILE_GET_INFO_MEMBER(m14_state::m14_get_tile_info) void m14_state::video_start() { m_m14_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(m14_state::m14_get_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32); - - } void m14_state::draw_ball_and_paddle(bitmap_ind16 &bitmap, const rectangle &cliprect) @@ -187,8 +185,6 @@ void m14_state::draw_ball_and_paddle(bitmap_ind16 &bitmap, const rectangle &clip if(cliprect.contains(resx,resy)) bitmap.pix(resy, resx) = m_palette->pen(white_pen); } - - } @@ -363,7 +359,7 @@ static INPUT_PORTS_START( m14 ) PORT_START("IN1") PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_NAME("P1 Reach") - PORT_START("DSW") //this whole port is stored at work ram $2112. + PORT_START("DSW") // this whole port is stored at work ram $2112. PORT_DIPNAME( 0x01, 0x01, "Show available tiles" ) // difficulty even PORT_DIPSETTING( 0x00, DEF_STR( No ) ) PORT_DIPSETTING( 0x01, DEF_STR( Yes ) ) |