From 2ee11ecfa916588a078cfd9005e037cf662de85f Mon Sep 17 00:00:00 2001 From: csaldiasdev Date: Sun, 5 Jul 2026 21:52:55 -0400 Subject: [PATCH] =?UTF-8?q?rename:=20D=5F800733BF=20=E2=86=92=20gSpeciesGr?= =?UTF-8?q?owthRate[],=20D=5F80073457=20=E2=86=92=20gSpeciesEggGroup[]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two more per-species tables (152 bytes each, 1..151 + slot 0): gSpeciesGrowthRate[152] - accessed by func_80022A88 gSpeciesEggGroup[152] - accessed by func_80022A98 Same encoding caveat as the Type tables: stored values do not match standard Gen-1 encodings (Growth rate is normally 0..4 in Gen-1, Egg Group is 0..14 or 0..15). Naming reflects function context; the actual encoding is unverified. Still matching: md5 ed1378bc… (verified by `make`) --- src/232C0.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/232C0.c b/src/232C0.c index 353c0d4..ecb8105 100644 --- a/src/232C0.c +++ b/src/232C0.c @@ -130,15 +130,15 @@ s32 func_80022A60(s32 arg0) { } u8 func_80022A88(s32 arg0) { - extern u8 D_800733BF[]; + extern u8 gSpeciesGrowthRate[]; - return D_800733BF[arg0]; + return gSpeciesGrowthRate[arg0]; } u8 func_80022A98(s32 arg0) { - extern u8 D_80073457[]; + extern u8 gSpeciesEggGroup[]; - return D_80073457[arg0]; + return gSpeciesEggGroup[arg0]; } s32 func_80022AA8(s32 arg0) {