aboutsummaryrefslogtreecommitdiff
path: root/gui/object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/object.cpp')
-rw-r--r--gui/object.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/gui/object.cpp b/gui/object.cpp
index f24ce0997e..aaa5a1a4b3 100644
--- a/gui/object.cpp
+++ b/gui/object.cpp
@@ -48,16 +48,16 @@ void GuiObject::reflowLayout() {
if (_x < 0)
error("Widget <%s> has x < 0 (%d)", _name.c_str(), _x);
- if (_x >= g_system->getOverlayWidth())
- error("Widget <%s> has x > %d (%d)", _name.c_str(), g_system->getOverlayWidth(), _x);
- if (_x + _w > g_system->getOverlayWidth())
- error("Widget <%s> has x + w > %d (%d)", _name.c_str(), g_system->getOverlayWidth(), _x + _w);
+ if (_x >= g_gui.getWidth())
+ error("Widget <%s> has x > %d (%d)", _name.c_str(), g_gui.getWidth(), _x);
+ if (_x + _w > g_gui.getWidth())
+ error("Widget <%s> has x + w > %d (%d)", _name.c_str(), g_gui.getWidth(), _x + _w);
if (_y < 0)
error("Widget <%s> has y < 0 (%d)", _name.c_str(), _y);
- if (_y >= g_system->getOverlayHeight())
- error("Widget <%s> has y > %d (%d)", _name.c_str(), g_system->getOverlayHeight(), _y);
- if (_y + _h > g_system->getOverlayHeight())
- error("Widget <%s> has y + h > %d (%d)", _name.c_str(), g_system->getOverlayHeight(), _y + _h);
+ if (_y >= g_gui.getHeight())
+ error("Widget <%s> has y > %d (%d)", _name.c_str(), g_gui.getHeight(), _y);
+ if (_y + _h > g_gui.getHeight())
+ error("Widget <%s> has y + h > %d (%d)", _name.c_str(), g_gui.getHeight(), _y + _h);
}
}