summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Jack Li <jackrjli@berkeley.edu>2025-07-16 09:18:56 -0700
committer GitHub <noreply@github.com>2025-07-16 18:18:56 +0200
commit5cea25692f97566bca643939aa4916f197d6c8d3 (patch)
treeb8d640e5bf127a3973f01105839b305d81d68ec1
parent3c7ec310ddc08b4b5ef5dbbe35bd4a1e10a2f347 (diff)
Show Toaplan test switch as input instead of dip switch, remove default keybind (#13916)
* Show Toaplan test switch as input instead of dip switch, remove default keybind * fix merge conflict --------- Co-authored-by: hap <happppp@users.noreply.github.com>
-rw-r--r--src/mame/toaplan/toaplipt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/toaplan/toaplipt.h b/src/mame/toaplan/toaplipt.h
index d8da5ec8eb0..9dd924a0bd2 100644
--- a/src/mame/toaplan/toaplipt.h
+++ b/src/mame/toaplan/toaplipt.h
@@ -175,7 +175,7 @@
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) \
@@ -184,5 +184,5 @@
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