From 5e5a498cc64d326786212a38749ec2af8905dc60 Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Wed, 25 Jun 2025 11:27:38 -0400 Subject: Fishing graphics make more sense horizontally --- gfx/overworld/red_fish_back.png | Bin 114 -> 115 bytes gfx/overworld/red_fish_front.png | Bin 107 -> 107 bytes gfx/overworld/red_fish_side.png | Bin 111 -> 113 bytes 3 files changed, 0 insertions(+), 0 deletions(-) (limited to 'gfx') diff --git a/gfx/overworld/red_fish_back.png b/gfx/overworld/red_fish_back.png index 0972377c..fd29ddab 100644 Binary files a/gfx/overworld/red_fish_back.png and b/gfx/overworld/red_fish_back.png differ diff --git a/gfx/overworld/red_fish_front.png b/gfx/overworld/red_fish_front.png index e18a27d8..0d76b428 100644 Binary files a/gfx/overworld/red_fish_front.png and b/gfx/overworld/red_fish_front.png differ diff --git a/gfx/overworld/red_fish_side.png b/gfx/overworld/red_fish_side.png index 11f25c2a..faab5474 100644 Binary files a/gfx/overworld/red_fish_side.png and b/gfx/overworld/red_fish_side.png differ -- cgit v1.3.1-sl0p From fcb61ae0e4724e8901562d9f89f69ff70822886c Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Wed, 25 Jun 2025 23:59:47 -0400 Subject: Distinguish single trainer pics section from Pokemon pics --- engine/battle/core.asm | 2 +- gfx/pics.asm | 2 +- layout.link | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'gfx') 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 -- cgit v1.3.1-sl0p