shithub: puzzles

Download patch

ref: 4f579ddab55d7c49c3d7413e4da690e6609bfe25
parent: 5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f
author: Simon Tatham <anakin@pobox.com>
date: Fri Mar 10 13:10:00 EST 2023

Tracks: missing \n in debug statement.

--- a/tracks.c
+++ b/tracks.c
@@ -2629,7 +2629,8 @@
         x2 = cx + r*(float)cos(th2);
         y1 = cy + r*(float)sin(th);
         y2 = cy + r*(float)sin(th2);
-        debug(("circ outline: x=%.2f -> %.2f, thick=%.2f", x1, x2, thickness));
+        debug(("circ outline: x=%.2f -> %.2f, thick=%.2f\n",
+               x1, x2, thickness));
         draw_thick_line(dr, thickness, x1, y1, x2, y2, colour);
     }
 }