diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/area.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. */ |