diff options
author | Jared Adams <jaxad0127@gmail.com> | 2011-05-30 11:13:31 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2011-05-30 12:35:08 -0600 |
commit | 0248b2f58c783f21b7e68a20deadc0a3f942c869 (patch) | |
tree | fb9487625c282f59325f0585f08e2efd0683cd39 /src/gui/widgets | |
parent | b69c0511206d68a61fd08042d1c122c9fac22202 (diff) | |
download | mana-0248b2f58c783f21b7e68a20deadc0a3f942c869.tar.gz mana-0248b2f58c783f21b7e68a20deadc0a3f942c869.tar.bz2 mana-0248b2f58c783f21b7e68a20deadc0a3f942c869.tar.xz mana-0248b2f58c783f21b7e68a20deadc0a3f942c869.zip |
Remove some uneeded offsetting
Also fix position of being names.
Reviewed-by: Bertram
Diffstat (limited to 'src/gui/widgets')
-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); } |