mirror of
https://github.com/pret/pokestadium.git
synced 2026-08-27 21:34:09 -05:00
rename: D_80073230 → gMoveType[] (move type lookup, 55 entries)
The 55-byte move type lookup table accessed by func_80022A28 (used in TM/HM context: `for (j = 0; j < 0x37; j++)`). Renamed in src/232C0.c (3 sites). The asm dlabel change in asm/us/data/rom_data_703E0.data.s is gitignored but makes the build resolve; future 'make extract' regenerates with the new name from the asm-source rename. Still matching: md5 ed1378bc… (verified by `make`)
This commit is contained in:
@@ -108,9 +108,9 @@ s32 func_80022A04(u16* arg0, unk_D_800AC910_040* arg1) {
|
||||
}
|
||||
|
||||
u8 func_80022A28(s32 arg0) {
|
||||
extern u8 D_80073230[];
|
||||
extern u8 gMoveType[];
|
||||
|
||||
return D_80073230[arg0];
|
||||
return gMoveType[arg0];
|
||||
}
|
||||
|
||||
u8 func_80022A38(s32 arg0) {
|
||||
|
||||
Reference in New Issue
Block a user