summaryrefslogtreecommitdiff
path: root/src/map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map.c b/src/map.c
index c572854..05774c6 100644
--- a/src/map.c
+++ b/src/map.c
@@ -66,10 +66,10 @@ draw_outline(int x, int y)
const int down = (map_get(x, y + 1) == 1);
x *= TSIZE;
y *= TSIZE;
- if (!left) LZY_DrawRect(x, y, 1, TSIZE);
- if (!right) LZY_DrawRect(x + TSIZE - 1, y, 1, TSIZE);
- if (!up) LZY_DrawRect(x, y, TSIZE, 1);
- if (!down) LZY_DrawRect(x, y + TSIZE - 1, TSIZE, 1);
+ if (!left) LZY_DrawFillRect(x, y, 1, TSIZE);
+ if (!right) LZY_DrawFillRect(x + TSIZE - 1, y, 1, TSIZE);
+ if (!up) LZY_DrawFillRect(x, y, TSIZE, 1);
+ if (!down) LZY_DrawFillRect(x, y + TSIZE - 1, TSIZE, 1);
}
void