diff options
| author | Simon Tatham <anakin@pobox.com> | 2023-03-10 18:10:00 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2023-03-10 18:46:06 +0000 |
| commit | 4f579ddab55d7c49c3d7413e4da690e6609bfe25 (patch) | |
| tree | d6eb00b5fb27718c33f7c409bee01fa61c1f87bd | |
| parent | 5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f (diff) | |
| download | puzzles-4f579ddab55d7c49c3d7413e4da690e6609bfe25.zip puzzles-4f579ddab55d7c49c3d7413e4da690e6609bfe25.tar.gz puzzles-4f579ddab55d7c49c3d7413e4da690e6609bfe25.tar.bz2 puzzles-4f579ddab55d7c49c3d7413e4da690e6609bfe25.tar.xz | |
Tracks: missing \n in debug statement.
| -rw-r--r-- | tracks.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); } } |