summaryrefslogtreecommitdiff
path: root/src/player.c
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2023-03-31 17:09:15 +0200
committerkdx <kikoodx@paranoici.org>2023-03-31 22:33:00 +0200
commit98b50eff084f9c1d07090c65d02ada9c2d4d5ae8 (patch)
treef92db4aa3623722062d9943a49291ad68496bb30 /src/player.c
parent3fb3d12d6a984c660c3fd18bc74216fceab8467f (diff)
download006-98b50eff084f9c1d07090c65d02ada9c2d4d5ae8.tar.gz
tzr update
Diffstat (limited to 'src/player.c')
-rw-r--r--src/player.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player.c b/src/player.c
index 460e80a..36a5131 100644
--- a/src/player.c
+++ b/src/player.c
@@ -2,9 +2,9 @@
IMPL(draw) {
TZR_DrawSetColor(1, 1, 1, 0.5);
- TZR_DrawRectangle(true, this->pos[0] - this->width / 2,
+ TZR_DrawRectangle(this->pos[0] - this->width / 2,
this->pos[1] - this->height / 2,
- this->width, this->height);
+ this->width, this->height, .fill=true);
}
IMPL(update) {