aboutsummaryrefslogtreecommitdiff
path: root/graphics/primitives.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/primitives.cpp')
-rw-r--r--graphics/primitives.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/graphics/primitives.cpp b/graphics/primitives.cpp
index 85a0383ea9..077af1c3a6 100644
--- a/graphics/primitives.cpp
+++ b/graphics/primitives.cpp
@@ -26,6 +26,13 @@
namespace Graphics {
+#ifdef MACOSX
+// Older versions of Mac OS X didn't supply a sqrtf function. To ensure
+// binary compatibiity, we force using pow instead of sqrtf (the only
+// potential drawback is that it might be a little bit slower).
+#define sqrtf sqrt
+#endif
+
void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data) {
// Bresenham's line algorithm, as described by Wikipedia
const bool steep = ABS(y1 - y0) > ABS(x1 - x0);