diff options
author | 2020-09-16 16:37:22 +1000 | |
---|---|---|
committer | 2020-09-16 16:37:22 +1000 | |
commit | b1f32927f352db803325c7534a6824d778481648 (patch) | |
tree | b119370bcc02da6d4dd0568926089eaa857a5b48 /src/emu/ioport.h | |
parent | cfd3c1fac6cb64b500663d2dab1cf4ea2965a336 (diff) |
Cleaned up inputs a little.
Removed the IPT_POKER_BET, replacing it with IPT_GAMBLE_BET.
Re-organised the order of input types in the source and the
documentation to better reflect how they're logically grouped or
organised on a mahjong or gambling control panel.
Made the blackjack, poker and slots documentation headings subheadings
under the gambling heading.
Cleaned up inputs for a number of gambling games.
Diffstat (limited to 'src/emu/ioport.h')
-rw-r--r-- | src/emu/ioport.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/emu/ioport.h b/src/emu/ioport.h index 9df5e8f533a..72add6abb41 100644 --- a/src/emu/ioport.h +++ b/src/emu/ioport.h @@ -217,13 +217,13 @@ enum ioport_type IPT_MAHJONG_CHI, IPT_MAHJONG_REACH, IPT_MAHJONG_RON, + IPT_MAHJONG_FLIP_FLOP, IPT_MAHJONG_BET, - IPT_MAHJONG_LAST_CHANCE, IPT_MAHJONG_SCORE, IPT_MAHJONG_DOUBLE_UP, - IPT_MAHJONG_FLIP_FLOP, IPT_MAHJONG_BIG, IPT_MAHJONG_SMALL, + IPT_MAHJONG_LAST_CHANCE, IPT_MAHJONG_LAST, @@ -256,15 +256,15 @@ enum ioport_type // IPT_GAMBLE_DOOR4, // IPT_GAMBLE_DOOR5, - IPT_GAMBLE_HIGH, // player - IPT_GAMBLE_LOW, // player - IPT_GAMBLE_HALF, // player + IPT_GAMBLE_PAYOUT, // player + IPT_GAMBLE_BET, // player IPT_GAMBLE_DEAL, // player - IPT_GAMBLE_D_UP, // player - IPT_GAMBLE_TAKE, // player IPT_GAMBLE_STAND, // player - IPT_GAMBLE_BET, // player - IPT_GAMBLE_PAYOUT, // player + IPT_GAMBLE_TAKE, // player + IPT_GAMBLE_D_UP, // player + IPT_GAMBLE_HALF, // player + IPT_GAMBLE_HIGH, // player + IPT_GAMBLE_LOW, // player // poker-specific inputs IPT_POKER_HOLD1, @@ -273,7 +273,6 @@ enum ioport_type IPT_POKER_HOLD4, IPT_POKER_HOLD5, IPT_POKER_CANCEL, - IPT_POKER_BET, // slot-specific inputs IPT_SLOT_STOP1, |