diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2022-11-10 22:46:10 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2022-11-10 23:39:08 +0000 |
| commit | 22c4cad50e5583d668b87ad19adce377a67452a6 (patch) | |
| tree | 1cd2b37f7fee6acf4d09a69d3b4e1480d9fd7f6b /puzzles.h | |
| parent | 73f4edb09f1b5cbf39c6ab99767fa4499d4b3df8 (diff) | |
| download | puzzles-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |