From 20d95a3a156b8d903581d76359522ef9cd51e492 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Mon, 17 Jul 2023 08:06:56 +0100 Subject: Trim spritesheet Remove some unused space --- src/tmonster.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/tmonster.c') diff --git a/src/tmonster.c b/src/tmonster.c index 9f3c618..491decb 100644 --- a/src/tmonster.c +++ b/src/tmonster.c @@ -16,20 +16,20 @@ static const Rect frames[2 * 4] = { /* right */ - { 96, 16, 144, 144 }, - { 80, 48, 144, 144 }, + { 96, 16, 144, 112 }, + { 80, 48, 144, 112 }, /* not used */ - { 0, 0, 144, 144 }, - { 0, 0, 144, 144 }, + { 0, 0, 144, 112 }, + { 0, 0, 144, 112 }, /* left */ - { 96, 16, 144, 144 }, - { 96, 48, 144, 144 }, + { 96, 16, 144, 112 }, + { 96, 48, 144, 112 }, /* not used */ - { 0, 0, 144, 144 }, - { 0, 0, 144, 144 } + { 0, 0, 144, 112 }, + { 0, 0, 144, 112 } }; void tmonster_init(Entity *e) -- cgit v1.2.3