From e26b031702d3f0ef63afcae814ebddd439d05274 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 6 May 2025 16:37:53 -0400 Subject: fmt --- user/forkman.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user') diff --git a/user/forkman.c b/user/forkman.c index 538992b..2e0e0af 100644 --- a/user/forkman.c +++ b/user/forkman.c @@ -260,7 +260,7 @@ static int client_entry(sharedmem *shared) for (size_t i = 0; i < shared->player_vel.x; ++i) { size_t x = shared->player_pos.x + 1; size_t y = shared->player_pos.y + 1; - // boundscheck to consider outside tiles to be solid + // boundscheck to consider outside tiles to be solid if (is_inbounds(x, y) && tile_at(shared, x, y)->type != TILE_AIR) { break; } -- cgit v1.2.3-freya