chiark / gitweb /
Small printing fix from Gary Wong. Shows up when printing with
authorSimon Tatham <anakin@pobox.com>
Thu, 21 Dec 2006 17:11:56 +0000 (17:11 +0000)
committerSimon Tatham <anakin@pobox.com>
Thu, 21 Dec 2006 17:11:56 +0000 (17:11 +0000)
solutions: the rightmost and lowermost lines of the grid never get
solution lines drawn on them.

[originally from svn r7003]

loopy.c

diff --git a/loopy.c b/loopy.c
index 798e54e333654479854bfbaf83a0dd0540503574..20d1e967d3c7c89aada812420c95c7eacda5fcae 100644 (file)
--- a/loopy.c
+++ b/loopy.c
@@ -3791,14 +3791,14 @@ static void game_print(drawing *dr, game_state *state, int tilesize)
     /*
      * Lines. (At the moment, I'm not bothering with crosses.)
      */
-    FORALL_VL(state, x, y) {
+    FORALL_HL(state, x, y) {
         if (RIGHTOF_DOT(state, x, y) == LINE_YES)
         draw_rect(dr, BORDER + x * TILE_SIZE,
                   BORDER + y * TILE_SIZE - LINEWIDTH/2,
                   TILE_SIZE, (LINEWIDTH/2) * 2 + 1, ink);
     }
 
-    FORALL_HL(state, x, y) {
+    FORALL_VL(state, x, y) {
         if (BELOW_DOT(state, x, y) == LINE_YES)
         draw_rect(dr, BORDER + x * TILE_SIZE - LINEWIDTH/2,
                   BORDER + y * TILE_SIZE,