diff --git a/microfx_src/src/ext/gametools/map.c b/microfx_src/src/ext/gametools/map.c index e3ff08b..ec2238a 100644 --- a/microfx_src/src/ext/gametools/map.c +++ b/microfx_src/src/ext/gametools/map.c @@ -12,7 +12,8 @@ void vmap(int sx, int sy, MMap *map) { int tx, ty; /* mx and my will contain how many pixels will be hidden on x and on y. */ int mx, my; - /* dw and dh contain the amount of tiles that will be drawn on x and on y. */ + /* dw and dh contain the amount of tiles that will be drawn on x and on y. + */ int dw = w/map->tw+1, dh = h/map->th+1; /* mw and mh will contain the height and the width of the map. */ int mw = map->w*map->tw, mh = map->h*map->th;