diff options
-rw-r--r-- | src/area.c | 4 | ||||
-rw-r--r-- | src/main.c | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -178,8 +178,8 @@ render_area_to_surface(struct area *area, SDL_Rect *arearect, SDL_MapRGB(surface->format, 0, 0, 0)); /* For demo */ - tmprect.x = dstrect.x + 120 - 8; - tmprect.y = dstrect.y + 80 - 12; + tmprect.x = dstrect.x + 160 - 8; + tmprect.y = dstrect.y + 120 - 12; tmprect.w = 16; tmprect.h = 20; @@ -57,7 +57,7 @@ main(void) struct map_exit *e; init(); - vp = init_viewport(240, 160, 8); + vp = init_viewport(320, 240, 8); map = map_get(MAPSDIR "/forest1-8bit.tmx"); if (map == NULL) { |