diff options
author | YamaArashi <YamaArashi@users.noreply.github.com> | 2017-01-05 15:58:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-05 15:58:58 -0800 |
commit | 2bf932b4f0fdfc821396b58250c02fc4eabf47e7 (patch) | |
tree | f83225b8abbe1d24ff4e32909ca03ff472c1cfc0 /include/gba/types.h | |
parent | 297de575412e42bdc91850fb5c8bba0df3babae4 (diff) | |
parent | 9dc9c657b489ae4d5b983ea0cbd12a8e77803dbf (diff) |
Merge pull request #163 from camthesaxman/intro
decompile more intro functions
Diffstat (limited to 'include/gba/types.h')
-rw-r--r-- | include/gba/types.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/gba/types.h b/include/gba/types.h index be7390d5a..fd8a20a4c 100644 --- a/include/gba/types.h +++ b/include/gba/types.h @@ -74,6 +74,27 @@ struct OamData #define ST_OAM_H_RECTANGLE 1 #define ST_OAM_V_RECTANGLE 2 +struct BgAffineSrcData +{ + s32 texX; + s32 texY; + s16 scrX; + s16 scrY; + s16 sx; + s16 sy; + u16 alpha; +}; + +struct BgAffineDstData +{ + s16 pa; + s16 pb; + s16 pc; + s16 pd; + s32 dx; + s32 dy; +}; + struct ObjAffineSrcData { s16 xScale; |