diff options
| author | Rangi42 <sylvie.oukaour+rangi42@gmail.com> | 2025-06-25 23:59:47 -0400 |
|---|---|---|
| committer | Rangi42 <sylvie.oukaour+rangi42@gmail.com> | 2025-06-25 23:59:47 -0400 |
| commit | fcb61ae0e4724e8901562d9f89f69ff70822886c (patch) | |
| tree | d7b489d0ddd2a6c797339a47b24fc98b5d057c8c | |
| parent | Fishing graphics make more sense horizontally (diff) | |
| download | pokeyellow-fcb61ae0e4724e8901562d9f89f69ff70822886c.tar.gz pokeyellow-fcb61ae0e4724e8901562d9f89f69ff70822886c.tar.xz pokeyellow-fcb61ae0e4724e8901562d9f89f69ff70822886c.zip | |
Distinguish single trainer pics section from Pokemon pics
| -rw-r--r-- | engine/battle/core.asm | 2 | ||||
| -rw-r--r-- | gfx/pics.asm | 2 | ||||
| -rw-r--r-- | layout.link | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index 8aa27cce..114e715b 100644 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -6919,7 +6919,7 @@ _LoadTrainerPic: ld d, a ; de contains pointer to trainer pic ld a, [wLinkState] and a - ld a, BANK("Pics 6") ; this is where all the trainer pics are (not counting Red's) + ld a, BANK("Trainer Pics") jr z, .loadSprite ld a, BANK(RedPicFront) .loadSprite diff --git a/gfx/pics.asm b/gfx/pics.asm index 134516cd..71dd9309 100644 --- a/gfx/pics.asm +++ b/gfx/pics.asm @@ -325,7 +325,7 @@ VictreebelPicFront:: INCBIN "gfx/pokemon/front/victreebel.pic" VictreebelPicBack:: INCBIN "gfx/pokemon/back/victreebelb.pic" -SECTION "Pics 6", ROMX +SECTION "Trainer Pics", ROMX YoungsterPic:: INCBIN "gfx/trainers/youngster.pic" BugCatcherPic:: INCBIN "gfx/trainers/bugcatcher.pic" diff --git a/layout.link b/layout.link index 0c7096cb..454b3bec 100644 --- a/layout.link +++ b/layout.link @@ -99,7 +99,7 @@ ROMX $12 "Screen Effects" "Maps 8" ROMX $13 - "Pics 6" + "Trainer Pics" "Maps 9" "Predefs" ROMX $14 |
