Indent comments that describe data table macro formats

This commit is contained in:
Rangi 2020-07-15 12:39:50 -04:00
parent e18e5d50b5
commit 15bcd88228
20 changed files with 30 additions and 30 deletions

View file

@ -45,14 +45,14 @@ SpriteFacingAndAnimationTable:
.WalkingLeft: db $88, $89, $8a, $8b
.NormalOAM:
; y, x, attributes
; y, x, attributes
db 0, 0, $00 ; top left
db 0, 8, $00 ; top right
db 8, 0, OAMFLAG_CANBEMASKED ; bottom left
db 8, 8, OAMFLAG_CANBEMASKED | OAMFLAG_ENDOFDATA ; bottom right
.FlippedOAM:
; y, x, attributes
; y, x, attributes
db 0, 8, OAMFLAG_VFLIPPED ; top left
db 0, 0, OAMFLAG_VFLIPPED ; top right
db 8, 8, OAMFLAG_VFLIPPED | OAMFLAG_CANBEMASKED ; bottom left

View file

@ -5,7 +5,7 @@ overworld_sprite: MACRO
ENDM
SpriteSheetPointerTable:
; graphics, tile count
; graphics, tile count
overworld_sprite RedSprite, 12 ; SPRITE_RED
overworld_sprite BlueSprite, 12 ; SPRITE_BLUE
overworld_sprite OakSprite, 12 ; SPRITE_OAK