diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-02-04 21:47:11 -0600 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2017-02-04 19:47:11 -0800 |
commit | 2afc20150b1cf5e9bcc8008c0323ac57af353718 (patch) | |
tree | bdc26fa8435b11ddb3aae11f282a45a3385b5a39 /include/sprite.h | |
parent | 27dc855202a2531914c83d15d5a9c3745c0ca88a (diff) |
decompile more of field_map_obj (#231)
* decompile more code
* decompile more of field_map_obj
* decompile more of field_map_obj
Diffstat (limited to 'include/sprite.h')
-rw-r--r-- | include/sprite.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/sprite.h b/include/sprite.h index 4e3074ebb..42620c9e9 100644 --- a/include/sprite.h +++ b/include/sprite.h @@ -147,7 +147,7 @@ struct Sprite { /*0x00*/ struct OamData oam; /*0x08*/ const union AnimCmd *const *anims; - /*0x0C*/ struct SpriteFrameImage *images; + /*0x0C*/ const struct SpriteFrameImage *images; /*0x10*/ const union AffineAnimCmd *const *affineAnims; /*0x14*/ const struct SpriteTemplate *template; /*0x18*/ const struct SubspriteTable *subspriteTables; @@ -200,6 +200,10 @@ struct Sprite /*0x43*/ u8 subpriority; }; +extern const struct OamData gDummyOamData; +extern const union AnimCmd *const gDummySpriteAnimTable[]; +extern const union AffineAnimCmd *const gDummySpriteAffineAnimTable[]; + extern s16 gSpriteCoordOffsetX; extern s16 gSpriteCoordOffsetY; |