summaryrefslogtreecommitdiff
path: root/src/c_fl_draw.cpp
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-02-26 17:14:08 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-02-26 17:14:08 +1300
commitca99321b1f7aa54b435c73f1ec14321dbd989f16 (patch)
tree5c428548dcbd5c1a7201df8bd75524c78974b8f0 /src/c_fl_draw.cpp
parentde0f3b8bbb85d9c5d5a226e761f658ee2e0d697b (diff)
Fixed linker errors with OpenGL and Fl_Draw::chordHEADmaster
Diffstat (limited to 'src/c_fl_draw.cpp')
-rw-r--r--src/c_fl_draw.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/c_fl_draw.cpp b/src/c_fl_draw.cpp
index 4c63f77..5021cd9 100644
--- a/src/c_fl_draw.cpp
+++ b/src/c_fl_draw.cpp
@@ -318,9 +318,11 @@ void fl_draw_arc2(int x, int y, int w, int h, double a1, double a2) {
fl_arc(x, y, w, h, a1, a2);
}
-void fl_draw_chord(int x, int y, int w, int h, double a1, double a2) {
- fl_chord(x, y, w, h, a1, a2);
-}
+// function does not yet exist
+// void fl_draw_chord(int x, int y, int w, int h, double a1, double a2) {
+// function does not yet exist
+// fl_chord(x, y, w, h, a1, a2);
+// }
void fl_draw_circle(double x, double y, double r) {
fl_circle(x, y, r);