Remove silly superflous parenthesis.

This commit is contained in:
Markus Armbruster 2006-03-26 07:46:49 +00:00
parent beae3ea770
commit 0d0a305bf3
14 changed files with 31 additions and 31 deletions

View file

@ -808,7 +808,7 @@ place_island(int c, int *xp, int *yp)
for (*yp = sy; *xp != sx || *yp != sy; *xp += 2) {
if (*xp >= WORLD_X) {
*yp = new_y(*yp + 1);
*xp = (*yp) % 2;
*xp = *yp % 2;
if (*xp == sx && *yp == sy)
break;
}