From 433f61f3c8a7cd06aaeaaac5d38cec5444f82b3f Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 20 Sep 2025 03:25:53 -0600 Subject: Samantha's spot --- src/player.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/player.c') diff --git a/src/player.c b/src/player.c index 64bdce6..417c7e1 100644 --- a/src/player.c +++ b/src/player.c @@ -71,7 +71,7 @@ void updatePlayer(Player* player, Game* game) player->velocity.x += -sinf(cameraAngle->x + (PI / 2.0)); } - player->velocity = Vector3Scale(player->velocity, 60.0); + player->velocity = Vector3Scale(player->velocity, PLAYER_SPEED); // Apply velocity. player->position = Vector3Add( -- cgit v1.2.3