ref: 503f6650e974ee5609182e7b3889f93296558939
parent: e794621861ee5a93202d6df748fec638be76a211
author: Simon Tatham <anakin@pobox.com>
date: Wed Sep 9 14:22:14 EDT 2009
Fix width/height braino introduced in r5844. [originally from svn r8643] [r5844 == 865e8ad6ca3d83ad2a585ceeb1809e9f68c18a20]
--- a/net.c
+++ b/net.c
@@ -1652,7 +1652,7 @@
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;