Prev: A416 Up: Map Next: A430
A425: Set shoot-during-lighter flag and jump to shoot handler
Reached when the player presses '0' during the first cigarette poll window of the lighter encounter (thief_lighter, poll at thief_lighter_1).
Sets var_encounter_flag = 1 to record that the hero tried to shoot during the lighter approach. Jumps to the shoot handler at shoot_lighter. The three NOPs pad the entry to align with the next routine.
lighter_shoot_flag A425 LD A,$01 Set lighter-shoot flag (var_encounter_flag) = 1
A427 LD ($C336),A
A42A JP shoot_lighter Jump to shoot handler (shoot_lighter)
A42D NOP NOP × 3 (alignment padding)
A42E NOP
A42F NOP
Prev: A416 Up: Map Next: A430