diff --git a/src/mame/toaplan/toaplipt.h b/src/mame/toaplan/toaplipt.h index 99ce50a1eca3c..9dd924a0bd249 100644 --- a/src/mame/toaplan/toaplipt.h +++ b/src/mame/toaplan/toaplipt.h @@ -175,14 +175,14 @@ Set to 0 if you want to see the Test switch as a standard input. Set to 1 if you want to see the Test switch as a fake Dip Switch */ -#define SHOW_TEST_AS_DIP 1 +#define SHOW_TEST_AS_DIP 0 #if SHOW_TEST_AS_DIP #define TOAPLAN_TEST_SWITCH(MASK, STATE) \ - PORT_DIPNAME( MASK, MASK & STATE, "Test Switch" ) PORT_CODE(KEYCODE_F1) PORT_TOGGLE \ + PORT_DIPNAME( MASK, MASK & STATE, "Test Switch" ) \ PORT_DIPSETTING( MASK & STATE, DEF_STR( Off ) ) \ PORT_DIPSETTING( MASK & ~STATE, DEF_STR( On ) ) #else #define TOAPLAN_TEST_SWITCH(MASK, STATE) \ - PORT_BIT( MASK, MASK & STATE, IPT_OTHER ) PORT_NAME("Test Switch") PORT_CODE(KEYCODE_F1) + PORT_BIT( MASK, MASK & STATE, IPT_OTHER ) PORT_NAME("Test Switch") #endif