diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-22 15:40:43 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-22 15:40:43 -0500 |
commit | 3a7f518de4bbced15cbf5bb877a988055de7d063 (patch) | |
tree | af3a8725138870cd9c3db4eaa29c56fb1422754c /engine/radio.asm | |
parent | 4d8528f90329e2ddfac16046ad8bf309ec1887f2 (diff) |
wStatusFlags/2 bit constants
Diffstat (limited to 'engine/radio.asm')
-rw-r--r-- | engine/radio.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/radio.asm b/engine/radio.asm index 67485dc03..9e9646505 100644 --- a/engine/radio.asm +++ b/engine/radio.asm @@ -5,7 +5,7 @@ PlayRadioShow: jr nc, .ok ; If Team Rocket is not occupying the radio tower, we don't need to be here. ld a, [wStatusFlags2] - bit 0, a ; checkflag ENGINE_ROCKETS_IN_RADIO_TOWER + bit STATUSFLAGS2_ROCKETS_IN_RADIO_TOWER_F, a jr z, .ok ; If we're in Kanto, we don't need to be here. call IsInJohto @@ -1171,7 +1171,7 @@ PeoplePlaces4: ; People push af ld hl, PnP_HiddenPeople ld a, [wStatusFlags] - bit 6, a ; ENGINE_CREDITS_SKIP + bit STATUSFLAGS_HALL_OF_FAME_F, a jr z, .ok ld hl, PnP_HiddenPeople_BeatE4 ld a, [wKantoBadges] |