From d6a41233a062792831e9b952675c7dd326d6c991 Mon Sep 17 00:00:00 2001 From: Nicole <41876584+NicoleFaye@users.noreply.github.com> Date: Sun, 27 Apr 2025 06:17:30 -0700 Subject: [PATCH] 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 --- wram.asm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wram.asm b/wram.asm index aadaae9..67ee6c6 100644 --- a/wram.asm +++ b/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