summaryrefslogtreecommitdiff
path: root/user
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-05-06 16:37:53 -0400
committerFreya Murphy <freya@freyacat.org>2025-05-06 16:37:53 -0400
commite26b031702d3f0ef63afcae814ebddd439d05274 (patch)
tree8a3952a3c56d5bcda7a8ae81e79547278f42bee7 /user
parentmore docs (diff)
downloadcomus-e26b031702d3f0ef63afcae814ebddd439d05274.tar.gz
comus-e26b031702d3f0ef63afcae814ebddd439d05274.tar.bz2
comus-e26b031702d3f0ef63afcae814ebddd439d05274.zip
fmt
Diffstat (limited to 'user')
-rw-r--r--user/forkman.c2
1 files changed, 1 insertions, 1 deletions
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;
}