summaryrefslogtreecommitdiff
path: root/src/deathpart.c
diff options
context:
space:
mode:
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) {