diff options
| author | Sylvie <35663410+Rangi42@users.noreply.github.com> | 2024-09-29 11:24:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-29 10:24:35 -0500 |
| commit | 7d9858fec42d0cef1f0349c3cef250003c5ed66d (patch) | |
| tree | 7cf362d6e8949e098159cb7778bbcf40301ad4de /scripts | |
| parent | Merge branch 'master' of https://github.com/pret/pokered (diff) | |
| download | pokeyellow-7d9858fec42d0cef1f0349c3cef250003c5ed66d.tar.gz pokeyellow-7d9858fec42d0cef1f0349c3cef250003c5ed66d.tar.xz pokeyellow-7d9858fec42d0cef1f0349c3cef250003c5ed66d.zip | |
Identify more bit flags (#119)
* Identify more bit flags
* Bit serves dual use in debug mode
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/VermilionCity_2.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/VermilionCity_2.asm b/scripts/VermilionCity_2.asm index 8b012659..c6cd9478 100644 --- a/scripts/VermilionCity_2.asm +++ b/scripts/VermilionCity_2.asm @@ -2,7 +2,7 @@ VermilionCityPrintOfficerJennyText:: CheckEvent EVENT_GOT_SQUIRTLE_FROM_OFFICER_JENNY jr nz, .asm_f1a69 ld a, [wBeatGymFlags] - bit 2, a ; THUNDERBADGE + bit BIT_THUNDERBADGE, a jr nz, .asm_f1a24 ld hl, OfficerJennyText1 call PrintText |
