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;