Fix camera
This commit is contained in:
parent
0ec6d2ded8
commit
6ea6ec7447
2
player.c
2
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;
|
||||
|
Loading…
Reference in New Issue
Block a user