replace leading tabs in several files

This commit is contained in:
nhmall
2022-05-30 12:09:35 -04:00
parent 81cff2390f
commit a8f0e91ddf
18 changed files with 186 additions and 186 deletions

View File

@@ -1005,8 +1005,8 @@ flip_worm_segs_vertical(struct monst *worm, int miny, int maxy)
struct wseg *curr = wtails[worm->wormno];
while (curr) {
curr->wy = (maxy - curr->wy + miny);
curr = curr->nseg;
curr->wy = (maxy - curr->wy + miny);
curr = curr->nseg;
}
}
@@ -1016,8 +1016,8 @@ flip_worm_segs_horizontal(struct monst *worm, int minx, int maxx)
struct wseg *curr = wtails[worm->wormno];
while (curr) {
curr->wx = (maxx - curr->wx + minx);
curr = curr->nseg;
curr->wx = (maxx - curr->wx + minx);
curr = curr->nseg;
}
}