summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/area.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/area.c b/src/area.c
index b0daca0..1914dad 100644
--- a/src/area.c
+++ b/src/area.c
@@ -133,10 +133,10 @@ render_area_to_surface(struct area *area, SDL_Rect *arearect,
SDL_MapRGB(surface->format, 63, 63, 63));
/* For demo */
- tmprect.x = dstrect.x + 112;
- tmprect.y = dstrect.y + 72;
+ tmprect.x = dstrect.x + 120 - 8;
+ tmprect.y = dstrect.y + 80 - 12;
tmprect.w = 16;
- tmprect.h = 16;
+ tmprect.h = 20;
/* Avoid fun glitches due to negative coordinates in source
* rectangles. */