Fix camera

This commit is contained in:
Bill Rossi 2025-03-08 19:01:23 -05:00
parent 0ec6d2ded8
commit 6ea6ec7447

View File

@ -68,7 +68,7 @@ void move_player(Player *p) {
if (too_far_left) { if (too_far_left) {
p->game->camera->offset.x = p->position.x; p->game->camera->offset.x = p->position.x;
} else if (too_far_right) { } 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 { } else {
p->game->camera->offset.x = 400; p->game->camera->offset.x = 400;
p->game->camera->offset.y = 275; p->game->camera->offset.y = 275;