James H points out a rogue fprintf in Net's print routine.
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 22 Aug 2005 22:58:19 +0000 (22:58 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 22 Aug 2005 22:58:19 +0000 (22:58 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/puzzles@6202 cda61777-01e9-0310-a592-d414129be87e

net.c

diff --git a/net.c b/net.c
index ac1df02..7ad8c56 100644 (file)
--- a/net.c
+++ b/net.c
@@ -2801,7 +2801,6 @@ static void game_print(drawing *dr, game_state *state, int tilesize)
     for (y = 0; y <= h; y++)
        for (x = 0; x <= w; x++) {
            int b = barrier(state, x % w, y % h);
-           fprintf(stderr, "%d,%d: %d\n", x, y, b);
            if (x < w && (b & U))
                draw_rect(dr, WINDOW_OFFSET + TILE_SIZE * x - TILE_SIZE/24,
                          WINDOW_OFFSET + TILE_SIZE * y - TILE_SIZE/24,