From 6ea6ec744702f81e671da90585da312bda02ce4f Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sat, 8 Mar 2025 19:01:23 -0500 Subject: [PATCH] Fix camera --- player.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player.c b/player.c index 233dc3b..0bfe5d2 100644 --- a/player.c +++ b/player.c @@ -68,7 +68,7 @@ void move_player(Player *p) { if (too_far_left) { p->game->camera->offset.x = p->position.x; } else if (too_far_right) { - p->game->camera->offset.x = p->position.x - 800; + p->game->camera->offset.x = p->position.x - level_width_in_pixels + 800; } else { p->game->camera->offset.x = 400; p->game->camera->offset.y = 275;