aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/clipping_helper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/menu/clipping_helper.cpp')
-rw-r--r--src/menu/clipping_helper.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/menu/clipping_helper.cpp b/src/menu/clipping_helper.cpp
index b03a4e8c..e12823cc 100644
--- a/src/menu/clipping_helper.cpp
+++ b/src/menu/clipping_helper.cpp
@@ -46,11 +46,11 @@ namespace usdx
log << log4cpp::Priority::DEBUG << "Clipping ("
<< new_scissor_box.get_width() << ", "
<< new_scissor_box.get_height() << ") at window offset: ("
- << new_scissor_box.get_x() << ", "
- << new_scissor_box.get_y() << ")";
+ << new_scissor_box.get_top() << ", "
+ << new_scissor_box.get_left() << ")";
// setup clipping box
- glScissor(new_scissor_box.get_x(), new_scissor_box.get_y(),
+ glScissor(new_scissor_box.get_top(), new_scissor_box.get_left(),
new_scissor_box.get_width(), new_scissor_box.get_height());
// enable clipping