Remove silly superflous parenthesis.
This commit is contained in:
parent
beae3ea770
commit
0d0a305bf3
14 changed files with 31 additions and 31 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue