Fix width/height braino introduced in r5844.

[originally from svn r8643]
[r5844 == 865e8ad6ca3d83ad2a585ceeb1809e9f68c18a20]
This commit is contained in:
Simon Tatham
2009-09-09 18:22:14 +00:00
parent e794621861
commit 503f6650e9

2
net.c
View File

@ -1652,7 +1652,7 @@ static game_state *new_game(midend *me, game_params *params, char *desc)
if (!(barrier(state, x, 0) & U) ||
!(barrier(state, x, state->height-1) & D))
state->wrapping = TRUE;
for (y = 0; y < state->width; y++)
for (y = 0; y < state->height; y++)
if (!(barrier(state, 0, y) & L) ||
!(barrier(state, state->width-1, y) & R))
state->wrapping = TRUE;