summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/body.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/body.c b/src/body.c
index 60e3cb9..69913b7 100644
--- a/src/body.c
+++ b/src/body.c
@@ -43,7 +43,7 @@ void tt_body_move(int d)
b->xvel *= -1;
move(b, d);
{
- SDL_Rect box = { b->x + 5, b->y + 2, 22, 28 };
+ SDL_Rect box = { b->x + 5, b->y + 2, 24, 24 };
if (!tt_room_collide(r, &box) && !tt_room_out(r, &box)) continue;
}
b->x = ex;
@@ -54,7 +54,7 @@ void tt_body_move(int d)
b->yvel *= -1;
move(b, d);
{
- SDL_Rect box = { b->x + 5, b->y + 2, 22, 28 };
+ SDL_Rect box = { b->x + 5, b->y + 2, 24, 24 };
if (!tt_room_collide(r, &box) && !tt_room_out(r, &box)) continue;
}
b->x = ex;