From 3070d192b7ba04fd01acd1761c4c47d70332ae86 Mon Sep 17 00:00:00 2001 From: etabeta78 Date: Sat, 30 Apr 2016 15:57:23 +0200 Subject: [PATCH] nes.cpp: removed configuration settings to enforce sprite limit and to turn off drawing of top/bottom 8 lines: the code to make these work was removed before 0.106 and the option were doing nothing since then. [Fabio Priuli] --- src/mame/drivers/nes.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/mame/drivers/nes.cpp b/src/mame/drivers/nes.cpp index bfce851aae6..983736f4611 100644 --- a/src/mame/drivers/nes.cpp +++ b/src/mame/drivers/nes.cpp @@ -35,25 +35,10 @@ ADDRESS_MAP_END static INPUT_PORTS_START( nes ) // input devices go through slot options - PORT_START("CONFIG") - PORT_CONFNAME( 0x01, 0x00, "Draw Top/Bottom 8 Lines") - PORT_CONFSETTING( 0x01, DEF_STR(No) ) - PORT_CONFSETTING( 0x00, DEF_STR(Yes) ) - PORT_CONFNAME( 0x02, 0x00, "Enforce 8 Sprites/line") - PORT_CONFSETTING( 0x02, DEF_STR(No) ) - PORT_CONFSETTING( 0x00, DEF_STR(Yes) ) INPUT_PORTS_END static INPUT_PORTS_START( famicom ) // input devices go through slot options - PORT_START("CONFIG") - PORT_CONFNAME( 0x01, 0x00, "Draw Top/Bottom 8 Lines") - PORT_CONFSETTING( 0x01, DEF_STR(No) ) - PORT_CONFSETTING( 0x00, DEF_STR(Yes) ) - PORT_CONFNAME( 0x02, 0x00, "Enforce 8 Sprites/line") - PORT_CONFSETTING( 0x02, DEF_STR(No) ) - PORT_CONFSETTING( 0x00, DEF_STR(Yes) ) - PORT_START("FLIPDISK") /* fake key */ PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_OTHER) PORT_NAME("Change Disk Side") PORT_CODE(KEYCODE_SPACE) INPUT_PORTS_END