mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-06 05:35:23 -05:00
Decompile these sprite templates
This commit is contained in:
parent
92bf25bd0d
commit
6dfe2ff14d
|
|
@ -544,10 +544,6 @@ gUnknown_83D414C:: @ 83D414C
|
|||
gUnknown_83D4164:: @ 83D4164
|
||||
.incbin "baserom.gba", 0x3D4164, 0x8
|
||||
|
||||
.section .rodata.83D4E4C
|
||||
gUnknown_83D4E4C::
|
||||
.incbin "baserom.gba", 0x3D4E54, 0x78
|
||||
|
||||
.section .rodata.83DF09C
|
||||
gUnknown_83DF09C:: @ 83DF09C
|
||||
.incbin "baserom.gba", 0x3DF09C, 0x18
|
||||
|
|
|
|||
|
|
@ -138,6 +138,7 @@ SECTIONS {
|
|||
asm/mail_data.o(.text);
|
||||
asm/map_name_popup.o(.text);
|
||||
src/item_menu_icons.o(.text);
|
||||
src/battle_anim_mon_movement.o(.text);
|
||||
asm/battle_anim_mon_movement.o(.text);
|
||||
src/item.o(.text);
|
||||
asm/shop.o(.text);
|
||||
|
|
@ -409,7 +410,7 @@ SECTIONS {
|
|||
data/field_weather.o(.rodata);
|
||||
data/data_835B488.o(.rodata);
|
||||
src/item_menu_icons.o(.rodata);
|
||||
data/data_835B488.o(.rodata.83D4E4C);
|
||||
src/battle_anim_mon_movement.o(.rodata);
|
||||
src/item.o(.rodata);
|
||||
data/data_835B488.o(.rodata.83DF09C);
|
||||
src/heal_location.o(.rodata);
|
||||
|
|
|
|||
21
src/battle_anim_mon_movement.c
Normal file
21
src/battle_anim_mon_movement.c
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#include "global.h"
|
||||
|
||||
void sub_80990AC(struct Sprite * sprite);
|
||||
void sub_8099144(struct Sprite * sprite);
|
||||
void sub_80991B4(struct Sprite * sprite);
|
||||
void sub_80992E0(struct Sprite * sprite);
|
||||
void sub_8099394(struct Sprite * sprite);
|
||||
|
||||
const struct SpriteTemplate gUnknown_83D4E4C[] = {
|
||||
{
|
||||
0, 0, &gDummyOamData, gDummySpriteAnimTable, NULL, gDummySpriteAffineAnimTable, sub_80990AC
|
||||
}, {
|
||||
0, 0, &gDummyOamData, gDummySpriteAnimTable, NULL, gDummySpriteAffineAnimTable, sub_8099144
|
||||
}, {
|
||||
0, 0, &gDummyOamData, gDummySpriteAnimTable, NULL, gDummySpriteAffineAnimTable, sub_80991B4
|
||||
}, {
|
||||
0, 0, &gDummyOamData, gDummySpriteAnimTable, NULL, gDummySpriteAffineAnimTable, sub_80992E0
|
||||
}, {
|
||||
0, 0, &gDummyOamData, gDummySpriteAnimTable, NULL, gDummySpriteAffineAnimTable, sub_8099394
|
||||
}
|
||||
};
|
||||
Loading…
Reference in New Issue
Block a user