diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-07-10 21:11:03 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-07-10 21:11:03 -0400 |
| commit | 8f81e71f192bce4b6f56b042638da376737e5abc (patch) | |
| tree | bb2fb2cd6ccab2514c7014323971302f5aebe0e1 /engine/gfx | |
| parent | Replace "branch" labels in SFX files with local names (diff) | |
| download | pokeyellow-8f81e71f192bce4b6f56b042638da376737e5abc.tar.gz pokeyellow-8f81e71f192bce4b6f56b042638da376737e5abc.tar.xz pokeyellow-8f81e71f192bce4b6f56b042638da376737e5abc.zip | |
Identify some `.asm_*` labels
Diffstat (limited to 'engine/gfx')
| -rw-r--r-- | engine/gfx/hp_bar.asm | 4 | ||||
| -rw-r--r-- | engine/gfx/palettes.asm | 16 |
2 files changed, 10 insertions, 10 deletions
diff --git a/engine/gfx/hp_bar.asm b/engine/gfx/hp_bar.asm index e4de0b95..d848a337 100644 --- a/engine/gfx/hp_bar.asm +++ b/engine/gfx/hp_bar.asm @@ -215,10 +215,10 @@ UpdateHPBar_PrintHPNumber: push hl ldh a, [hUILayoutFlags] bit 0, a - jr z, .asm_fb15 + jr z, .hpBelowBar ld de, $9 jr .next -.asm_fb15 +.hpBelowBar ld de, $15 .next add hl, de diff --git a/engine/gfx/palettes.asm b/engine/gfx/palettes.asm index caa22c10..d97fbc55 100644 --- a/engine/gfx/palettes.asm +++ b/engine/gfx/palettes.asm @@ -443,14 +443,14 @@ PrepareSuperNintendoVRAMTransfer: .packetPointers ; Only the first packet is needed. dw MaskEnFreezePacket - dw DataSnd_72548 - dw DataSnd_72558 - dw DataSnd_72568 - dw DataSnd_72578 - dw DataSnd_72588 - dw DataSnd_72598 - dw DataSnd_725a8 - dw DataSnd_725b8 + dw DataSndPacket1 + dw DataSndPacket2 + dw DataSndPacket3 + dw DataSndPacket4 + dw DataSndPacket5 + dw DataSndPacket6 + dw DataSndPacket7 + dw DataSndPacket8 CheckSGB: ; Returns whether the game is running on an SGB in carry. |
