summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2009-08-02 22:50:46 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2009-08-02 22:50:46 +0000
commit645ea861e0af3fa1e81e8f7570c4969983985449 (patch)
tree46d811bf3a7a6083881f660227e53ff6676996df
parent6a36bae5045d2d08ff779948fbddbbcdc9cb7442 (diff)
Changed default key for Mahjong P1 Bet to '3', because '2' was conflicting with P2 Start in 2 players Mahjong games.
This may be worth of mention in the whatsnew, to warn users about the new behavior.
-rw-r--r--src/emu/inpttype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/inpttype.h b/src/emu/inpttype.h
index ae6e4b38a1a..10cf91dc98c 100644
--- a/src/emu/inpttype.h
+++ b/src/emu/inpttype.h
@@ -76,7 +76,7 @@ static const input_type_desc core_types[] =
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, MAHJONG_CHI, "P1 Mahjong Chi", SEQ_DEF_1(KEYCODE_SPACE) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, MAHJONG_REACH, "P1 Mahjong Reach", SEQ_DEF_1(KEYCODE_LSHIFT) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, MAHJONG_RON, "P1 Mahjong Ron", SEQ_DEF_1(KEYCODE_Z) )
- INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, MAHJONG_BET, "P1 Mahjong Bet", SEQ_DEF_1(KEYCODE_2) )
+ INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, MAHJONG_BET, "P1 Mahjong Bet", SEQ_DEF_1(KEYCODE_3) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, MAHJONG_LAST_CHANCE, "P1 Mahjong Last Chance", SEQ_DEF_1(KEYCODE_RALT) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, MAHJONG_SCORE, "P1 Mahjong Score", SEQ_DEF_1(KEYCODE_RCONTROL) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, MAHJONG_DOUBLE_UP, "P1 Mahjong Double Up", SEQ_DEF_1(KEYCODE_RSHIFT) )