Everything is now on 80 columns ...

This commit is contained in:
mibi88 2023-05-29 13:35:03 +02:00
parent 75e7ef772d
commit 31bdcc35b9
1 changed files with 2 additions and 1 deletions

View File

@ -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;