mirror of
https://github.com/holub/mame
synced 2025-10-06 09:00:04 +03:00
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]
This commit is contained in:
parent
3fc92a04a8
commit
3070d192b7
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user