X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/b9cd98fc31480bec21f1184249275580b32fe493..3a23d4250db419f258a373eee9b086d26a9b8b6f:/osx.m diff --git a/osx.m b/osx.m index fdcef1e..b59999d 100644 --- a/osx.m +++ b/osx.m @@ -80,6 +80,7 @@ #define COMBINED /* we put all the puzzles in one binary in this port */ #include +#include #include #import #include "puzzles.h" @@ -1341,6 +1342,8 @@ static void osx_draw_line(void *handle, int x1, int y1, int x2, int y2, int colo [path moveToPoint:p1]; [path lineToPoint:p2]; [path stroke]; + NSRectFill(NSMakeRect(x1, fe->h-y1-1, 1, 1)); + NSRectFill(NSMakeRect(x2, fe->h-y2-1, 1, 1)); } static void osx_draw_rect(void *handle, int x, int y, int w, int h, int colour) {