chiark / gitweb /
Fix parenthesis problem in Light Up solver. Should fix Debian bug
authorSimon Tatham <anakin@pobox.com>
Fri, 28 Nov 2008 19:33:40 +0000 (19:33 +0000)
committerSimon Tatham <anakin@pobox.com>
Fri, 28 Nov 2008 19:33:40 +0000 (19:33 +0000)
#505359.

[originally from svn r8342]

lightup.c

index d9fa07964ed556ff9806c63c42d1d1d6b99175c7..ceda07fe4cb9ecc4472b6df736fef0badf9cff1e 100644 (file)
--- a/lightup.c
+++ b/lightup.c
@@ -1016,9 +1016,9 @@ static void try_rule_out(game_state *state, int x, int y,
 
     get_surrounds(state, x, y, &s);
     for (i = 0; i < s.npoints; i++) {
-        if (!GRID(state,flags,s.points[i].x,s.points[i].y) & F_NUMBERED)
+        if (!(GRID(state,flags,s.points[i].x,s.points[i].y) & F_NUMBERED))
             continue;
-        /* we have an adjacent clue square; find /it's/ surrounds
+        /* we have an adjacent clue square; find /its/ surrounds
          * and count the remaining lights it needs. */
         get_surrounds(state,s.points[i].x,s.points[i].y,&ss);
         curr_lights = 0;