Added a POKER_BET general input definition.

This is needed to mantain the standard inputs layout in the poker games.
You'll need a clean compile after this addition.
This commit is contained in:
Roberto Fresca 2009-08-22 16:57:12 +00:00
parent ad5f236d45
commit 267d560d67
2 changed files with 2 additions and 0 deletions

View File

@ -255,6 +255,7 @@ enum
IPT_POKER_HOLD4,
IPT_POKER_HOLD5,
IPT_POKER_CANCEL,
IPT_POKER_BET,
/* slot-specific inputs */
IPT_SLOT_STOP1,

View File

@ -113,6 +113,7 @@ static const input_type_desc core_types[] =
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, POKER_HOLD4, "Hold 4", SEQ_DEF_1(KEYCODE_V) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, POKER_HOLD5, "Hold 5", SEQ_DEF_1(KEYCODE_B) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, POKER_CANCEL, "Cancel", SEQ_DEF_1(KEYCODE_N) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, POKER_BET, "Bet", SEQ_DEF_1(KEYCODE_1) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, SLOT_STOP1, "Stop Reel 1", SEQ_DEF_1(KEYCODE_X) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, SLOT_STOP2, "Stop Reel 2", SEQ_DEF_1(KEYCODE_C) )
INPUT_PORT_DIGITAL_TYPE( 1, PLAYER1, SLOT_STOP3, "Stop Reel 3", SEQ_DEF_1(KEYCODE_V) )