Add type clarification comment for position coords and velocities

This commit is contained in:
Nicole 2025-04-16 13:41:17 -07:00
parent 1f4cbf7cb8
commit cb8973afc7

View File

@ -269,19 +269,31 @@ wStageCollisionStateBackup:: ; 0xd4b0
ds $2
wBallXPos:: ; 0xd4b3
; Ball's X position as 8.8 fixed-point value
; 2-byte signed value in little-endian format
ds $2
wBallYPos:: ; 0xd4b5
; Ball's X position as 8.8 fixed-point value
; 2-byte signed value in little-endian format
ds $2
wPreviousBallXPos:: ; 0xd4b7
; Ball's X position as 8.8 fixed-point value
; 2-byte signed value in little-endian format
ds $2
wPreviousBallYPos:: ; 0xd4b9
; Ball's X position as 8.8 fixed-point value
; 2-byte signed value in little-endian format
ds $2
wBallXVelocity:: ; 0xd4bb
; Ball's X position as 8.8 fixed-point value
; 2-byte signed value in little-endian format
ds $2
wBallYVelocity:: ; 0xd4bd
; Ball's X position as 8.8 fixed-point value
; 2-byte signed value in little-endian format
ds $2
ds $4