summaryrefslogtreecommitdiff
path: root/src/player.c
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2023-03-17 19:10:46 +0100
committerkdx <kikoodx@paranoici.org>2023-03-17 19:10:46 +0100
commit1e02a6cf8a3acad1469eb7f3d718c54a4bb6cad3 (patch)
treeb7a5cd5a0e5422dbb1c0e27980ee09c37d8e5ebb /src/player.c
parent5a84257033fe83d08b11ec845fbee1fa7bc56ca4 (diff)
downloadhyperultra-1e02a6cf8a3acad1469eb7f3d718c54a4bb6cad3.tar.gz
tweak graphics to look better on calc
Diffstat (limited to 'src/player.c')
-rw-r--r--src/player.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/player.c b/src/player.c
index 485296c..3ff73f7 100644
--- a/src/player.c
+++ b/src/player.c
@@ -62,9 +62,9 @@ player_draw(Entity *this, Game *g)
LZY_DrawRect(this->pos[0] - width / 2,
this->pos[1] - height / 2,
width, height);
- LZY_DrawRect(this->pos[0] - width / 2 + 1,
- this->pos[1] - height / 2 + 1,
- width - 2, height - 2);
+ //LZY_DrawRect(this->pos[0] - width / 2 + 1,
+ // this->pos[1] - height / 2 + 1,
+ // width - 2, height - 2);
}
void