diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-05-19 20:47:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 20:47:26 +0300 |
commit | f498725e917a761e42a6f93efdf239dde46dc245 (patch) | |
tree | dc335eeb815b2236516ea1c405cb1d26b0890f76 /arm9/lib/include/GX_state.h | |
parent | f0f5bcb1ff206f093958f523e2fc8892383e3028 (diff) | |
parent | 07c521e0fb29afac447846c52379fe6874c08a3e (diff) |
Merge branch 'master' into master
Diffstat (limited to 'arm9/lib/include/GX_state.h')
-rw-r--r-- | arm9/lib/include/GX_state.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arm9/lib/include/GX_state.h b/arm9/lib/include/GX_state.h new file mode 100644 index 00000000..c94b6c07 --- /dev/null +++ b/arm9/lib/include/GX_state.h @@ -0,0 +1,24 @@ +#ifndef GUARD_GX_STATE_H +#define GUARD_GX_STATE_H + +struct GX_State +{ + u16 lcdc; + u16 bg; + u16 obj; + u16 arm7; + u16 tex; + u16 texPltt; + u16 clrImg; + u16 bgExtPltt; + u16 objExtPltt; + + u16 sub_bg; + u16 sub_obj; + u16 sub_bgExtPltt; + u16 sub_objExtPltt; +}; + +void GX_InitGXState(); + +#endif //GUARD_GX_STATE_H |