Routines |
Prev: 93B0 | Up: Map | Next: 93DE |
Used by the routine at CheckStraight.
|
||||
Check if there is a three-of-a-kind.
|
||||
CheckThreeOfAKind | 93C9 | CALL Handler_ThreeOfAKind | Call Handler_ThreeOfAKind. | |
93CC | JR NZ,CheckTwoPairs | Jump to CheckTwoPairs if there are no three-of-a-kind matches. | ||
There is a three-of-a-kind! Process it.
|
||||
93CE | CALL CalculateCard | Call CalculateCard. | ||
93D1 | LD ($949C),A | Write A to *TableHandEvaluation_BaseCard. | ||
Record this hand "type".
|
||||
93D4 | LD A,$04 | Write "Three-Of-A-Kind" to *TableHandEvaluation_Type. | ||
93D6 | LD ($949B),A | |||
93D9 | XOR A | Write 00 to *TableHandEvaluation_BaseCardSuit. | ||
93DA | LD ($949D),A | |||
93DD | RET | Return. |
Prev: 93B0 | Up: Map | Next: 93DE |