mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 16:05:44 -07:00
Tracks: missing \n in debug statement.
This commit is contained in:
3
tracks.c
3
tracks.c
@ -2629,7 +2629,8 @@ static void draw_thick_circle_outline(drawing *dr, float thickness,
|
|||||||
x2 = cx + r*(float)cos(th2);
|
x2 = cx + r*(float)cos(th2);
|
||||||
y1 = cy + r*(float)sin(th);
|
y1 = cy + r*(float)sin(th);
|
||||||
y2 = cy + r*(float)sin(th2);
|
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);
|
draw_thick_line(dr, thickness, x1, y1, x2, y2, colour);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user