aboutsummaryrefslogtreecommitdiffstats
path: root/constants/oam_constants.asm
blob: 93d5b877101f89602af1bbf3c0be4c3ad25d8954 (plain) (blame)
1
2
3
4
5
6
7
8
; Pseudo-OAM flags used by game logic
	const_def
	const BIT_END_OF_OAM_DATA    ; 0
	const BIT_SPRITE_UNDER_GRASS ; 1

; Used in SpriteFacingAndAnimationTable (see data/sprites/facings.asm)
DEF FACING_END  EQU 1 << BIT_END_OF_OAM_DATA
DEF UNDER_GRASS EQU 1 << BIT_SPRITE_UNDER_GRASS