aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index f7cc099..09102a1 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -755,8 +755,8 @@ namespace ui {
auto stride = 5 * sizeof(GLfloat);
// we always want to make sure c1 is lower left and c2 is upper right
- if (c1.x > c2.x) std::swap(c1.x, c2.y);
- if (c1.y > c2.y) std::swap(c1.y, c2.y);
+ if (c1.x > c2.x) c1.swapX(c2); // std::swap(c1.x, c2.y);
+ if (c1.y > c2.y) c1.swapY(c2); // std::swap(c1.y, c2.y);
// if the box is too small, we will not be able to draw it
if (c2.x - c1.x < (box_corner_dim_t.x)) return;