summaryrefslogtreecommitdiff
path: root/src/gui/spellpopup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/spellpopup.cpp')
-rw-r--r--src/gui/spellpopup.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/spellpopup.cpp b/src/gui/spellpopup.cpp
index 3c6d17599..e867ec4e8 100644
--- a/src/gui/spellpopup.cpp
+++ b/src/gui/spellpopup.cpp
@@ -78,14 +78,14 @@ void SpellPopup::view(int x, int y)
int posX = std::max(0, x - getWidth() / 2);
int posY = y + distance;
- if (posX + getWidth() > graphics->getWidth())
+ if (posX + getWidth() > graphics->mWidth)
{
- if (graphics->getWidth() > getWidth())
- posX = graphics->getWidth() - getWidth();
+ if (graphics->mWidth > getWidth())
+ posX = graphics->mWidth - getWidth();
else
posX = 0;
}
- if (posY + getHeight() > graphics->getHeight())
+ if (posY + getHeight() > graphics->mHeight)
{
if (y > getHeight() + distance)
posY = y - getHeight() - distance;