aboutsummaryrefslogtreecommitdiff
path: root/puzzles.h
diff options
context:
space:
mode:
authorBen Harris <bjh21@bjh21.me.uk>2022-11-10 22:46:10 +0000
committerBen Harris <bjh21@bjh21.me.uk>2022-11-10 23:39:08 +0000
commit22c4cad50e5583d668b87ad19adce377a67452a6 (patch)
tree1cd2b37f7fee6acf4d09a69d3b4e1480d9fd7f6b /puzzles.h
parent73f4edb09f1b5cbf39c6ab99767fa4499d4b3df8 (diff)
downloadpuzzles-22c4cad50e5583d668b87ad19adce377a67452a6.zip
puzzles-22c4cad50e5583d668b87ad19adce377a67452a6.tar.gz
puzzles-22c4cad50e5583d668b87ad19adce377a67452a6.tar.bz2
puzzles-22c4cad50e5583d668b87ad19adce377a67452a6.tar.xz
Correct a comment: draw_rect_outline() uses draw_polygon()
Diffstat (limited to '')
-rw-r--r--puzzles.h2
1 files changed, 1 insertions, 1 deletions
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);