From 22c4cad50e5583d668b87ad19adce377a67452a6 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 10 Nov 2022 22:46:10 +0000 Subject: [PATCH] Correct a comment: draw_rect_outline() uses draw_polygon() --- puzzles.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puzzles.h b/puzzles.h index b476dee..675594d 100644 --- a/puzzles.h +++ b/puzzles.h @@ -385,7 +385,7 @@ void game_mkhighlight_specific(frontend *fe, float *ret, /* 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);