diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-10-04 16:33:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 16:33:09 -0400 |
commit | 712ee66e6154d734ea3960cc14ff1f4c1aaa639e (patch) | |
tree | c1e477bdf115f9191f19eb0cde8d75e1c606ab82 /include/gba/types.h | |
parent | 0cf4c9f25c2fe165c53a0c24f93a31a27ea42d6a (diff) | |
parent | 44b5d84a840c2c88972d72432e85b59cdc472565 (diff) |
Merge pull request #109 from PikalaxALT/wild_pokenmon_area
Wild pokemon area
Diffstat (limited to 'include/gba/types.h')
-rw-r--r-- | include/gba/types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/gba/types.h b/include/gba/types.h index 9f2594703..7163f925f 100644 --- a/include/gba/types.h +++ b/include/gba/types.h @@ -68,6 +68,10 @@ struct OamData /*0x06*/ u16 affineParam; }; +#define ST_OAM_HFLIP 0x08 +#define ST_OAM_VFLIP 0x10 +#define ST_OAM_MNUM_FLIP_MASK 0x18 + #define ST_OAM_OBJ_NORMAL 0 #define ST_OAM_OBJ_BLEND 1 #define ST_OAM_OBJ_WINDOW 2 |