diff options
author | Freya Murphy <freya@freyacat.org> | 2025-05-06 16:37:53 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-05-06 16:37:53 -0400 |
commit | e26b031702d3f0ef63afcae814ebddd439d05274 (patch) | |
tree | 8a3952a3c56d5bcda7a8ae81e79547278f42bee7 /user | |
parent | more docs (diff) | |
download | comus-e26b031702d3f0ef63afcae814ebddd439d05274.tar.gz comus-e26b031702d3f0ef63afcae814ebddd439d05274.tar.bz2 comus-e26b031702d3f0ef63afcae814ebddd439d05274.zip |
fmt
Diffstat (limited to 'user')
-rw-r--r-- | user/forkman.c | 2 |
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; } |