Prev: 922D Up: Map Next: 9258
9245: Player Add To Pot
Used by the routines at PlayGame, PlayerAction_Raise and PlayerAction_Hold.
PlayerAddToPot 9245 LD A,($96B7) Subtract *CurrentRaiseValue from *PlayerCash and write it back to *PlayerCash.
9248 LD B,A
9249 LD A,($96B5)
924C SUB B
924D LD ($96B5),A
9250 LD A,($96B4) Add *CurrentRaiseValue to *PotValue and write this back to *PotValue.
9253 ADD A,B
9254 LD ($96B4),A
9257 RET Return.
Prev: 922D Up: Map Next: 9258