diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/widgets/playerbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/playerbox.cpp b/src/gui/widgets/playerbox.cpp index 559ac5a6..f71889bb 100644 --- a/src/gui/widgets/playerbox.cpp +++ b/src/gui/widgets/playerbox.cpp @@ -85,8 +85,8 @@ void PlayerBox::draw(gcn::Graphics *graphics) { // Draw character const int bs = getFrameSize(); - const int x = getWidth() / 2 + bs - 16; - const int y = getHeight() - bs - 32; + const int x = getWidth() / 2 + bs; + const int y = getHeight() - bs; mBeing->drawSpriteAt(static_cast<Graphics*>(graphics), x, y); } |