diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-06 10:47:36 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-06 10:47:36 -0500 |
commit | 62f64aa793c25b96109a5bf9c1fdf57257f4524f (patch) | |
tree | 307167c2c752535f66c397707a5ef44726b499f5 /constants/oam_constants.asm | |
parent | 4efb3e307cd6b4bf267ab0d509f8e5ab498f798e (diff) |
Define OAM_HIGH_PALS for %100 in OAM attributes
Diffstat (limited to 'constants/oam_constants.asm')
-rwxr-xr-x | constants/oam_constants.asm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/constants/oam_constants.asm b/constants/oam_constants.asm index be63dc24..0b783d8b 100755 --- a/constants/oam_constants.asm +++ b/constants/oam_constants.asm @@ -11,6 +11,7 @@ OAM_Y_FLIP EQU 6 OAM_PRIORITY EQU 7 ; 0: OBJ above BG, 1: OBJ behind BG (colors 1-3) ; OAM attribute masks +OAM_HIGH_PALS EQU 1 << 2 ; palettes %100-%111 are OBP1 OAM_OBP1 EQU 1 << OAM_OBP_NUM ; OBJ palette 1 OAM_HFLIP EQU 1 << OAM_X_FLIP ; horizontal flip OAM_VFLIP EQU 1 << OAM_Y_FLIP ; vertical flip |