diff options
author | yenatch <yenatch@gmail.com> | 2013-12-01 16:40:56 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-01 16:40:56 -0500 |
commit | c0e2170f01366bca77e35d562f9f98b3a560a82c (patch) | |
tree | c2f3114084a8191d21530a4e5c63e20fc2c8d54d /main.asm | |
parent | e538027c822863e95004ef99c90b2c338b92184c (diff) |
some oam constants
Diffstat (limited to 'main.asm')
-rw-r--r-- | main.asm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -101,9 +101,9 @@ NUM_FACINGS EQU (FacingsEnd - Facings) / 2 ; db y, x, attributes, tile index ; Attributes: -X_FLIP EQU 1 << 5 -Y_FLIP EQU 1 << 6 -BEHIND_BG EQU 1 << 7 +X_FLIP EQU 1 << OAM_X_FLIP +Y_FLIP EQU 1 << OAM_Y_FLIP +BEHIND_BG EQU 1 << OAM_PRIORITY Facing00: |