aboutsummaryrefslogtreecommitdiff
path: root/tracks.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2023-03-10 18:10:00 +0000
committerSimon Tatham <anakin@pobox.com>2023-03-10 18:46:06 +0000
commit4f579ddab55d7c49c3d7413e4da690e6609bfe25 (patch)
treed6eb00b5fb27718c33f7c409bee01fa61c1f87bd /tracks.c
parent5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f (diff)
downloadpuzzles-4f579ddab55d7c49c3d7413e4da690e6609bfe25.zip
puzzles-4f579ddab55d7c49c3d7413e4da690e6609bfe25.tar.gz
puzzles-4f579ddab55d7c49c3d7413e4da690e6609bfe25.tar.bz2
puzzles-4f579ddab55d7c49c3d7413e4da690e6609bfe25.tar.xz
Tracks: missing \n in debug statement.
Diffstat (limited to 'tracks.c')
-rw-r--r--tracks.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tracks.c b/tracks.c
index 0579d4b..6c7bf10 100644
--- a/tracks.c
+++ b/tracks.c
@@ -2629,7 +2629,8 @@ static void draw_thick_circle_outline(drawing *dr, float thickness,
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);
}
}