ref: 22c4cad50e5583d668b87ad19adce377a67452a6
parent: 73f4edb09f1b5cbf39c6ab99767fa4499d4b3df8
author: Ben Harris <bjh21@bjh21.me.uk>
date: Thu Nov 10 17:46:10 EST 2022
Correct a comment: draw_rect_outline() uses draw_polygon()
--- a/puzzles.h
+++ b/puzzles.h
@@ -385,7 +385,7 @@
/* Randomly shuffles an array of items. */
void shuffle(void *array, int nelts, int eltsize, random_state *rs);
-/* Draw a rectangle outline, using the drawing API's draw_line. */
+/* Draw a rectangle outline, using the drawing API's draw_polygon. */
void draw_rect_outline(drawing *dr, int x, int y, int w, int h,
int colour);