mirror of
https://github.com/pret/pokepinball.git
synced 2026-03-21 17:55:03 -05:00
Add type clarification comment for position coords and velocities (#66)
* Add type clarification comment for position coords and velocities * Simplify comments --------- Co-authored-by: Marcus Huderle <huderlem@gmail.com>
This commit is contained in:
parent
1f4cbf7cb8
commit
d6a41233a0
5
wram.asm
5
wram.asm
|
|
@ -269,19 +269,22 @@ wStageCollisionStateBackup:: ; 0xd4b0
|
|||
ds $2
|
||||
|
||||
wBallXPos:: ; 0xd4b3
|
||||
; 8.8 fixed-point values in little-endian format
|
||||
ds $2
|
||||
wBallYPos:: ; 0xd4b5
|
||||
ds $2
|
||||
|
||||
wPreviousBallXPos:: ; 0xd4b7
|
||||
; 8.8 fixed-point values in little-endian format
|
||||
ds $2
|
||||
wPreviousBallYPos:: ; 0xd4b9
|
||||
ds $2
|
||||
|
||||
wBallXVelocity:: ; 0xd4bb
|
||||
; 8.8 fixed-point values in little-endian format
|
||||
ds $2
|
||||
|
||||
wBallYVelocity:: ; 0xd4bd
|
||||
; 8.8 fixed-point values in little-endian format
|
||||
ds $2
|
||||
|
||||
ds $4
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user