summaryrefslogtreecommitdiff
path: root/src/deathpart.c
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2023-03-25 21:54:50 +0100
committerkdx <kikoodx@paranoici.org>2023-03-25 21:54:50 +0100
commit5f234d1ab3d6dbb824e12d4e07abf659fc3de2a7 (patch)
tree94ba3b12db365bf3cd4c4165931937c436aa0df8 /src/deathpart.c
parentfed491d65ac06c5bebc9fedac5e5f8bb5bac687a (diff)
downloadhyperultra-5f234d1ab3d6dbb824e12d4e07abf659fc3de2a7.tar.gz
update lzy
Diffstat (limited to 'src/deathpart.c')
-rw-r--r--src/deathpart.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/deathpart.c b/src/deathpart.c
index 050cc54..b397133 100644
--- a/src/deathpart.c
+++ b/src/deathpart.c
@@ -16,10 +16,10 @@ IMPL_UPDATE() {
IMPL_DRAW() {
LZY_DrawSetColor(BLACK);
if (this->width == 1)
- LZY_DrawPoint(this->pos[0], this->pos[1]);
+ (void)LZY_DrawPoint(this->pos[0], this->pos[1]);
else
- LZY_DrawRect(this->pos[0], this->pos[1],
- this->width, this->width);
+ (void)LZY_DrawRect(this->pos[0], this->pos[1],
+ this->width, this->width);
} IMPL_END
IMPL_INIT(deathpart) {