diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-30 16:08:19 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-30 16:08:19 -0700 |
commit | ff6cd3ac0855cf516e364382153a77f61521ccdb (patch) | |
tree | 0f2d8f6714ab27dd573be69b4dfed321d13dab30 | |
parent | 678009add727cc34f9c157f2cf41c4c0ac8f7f30 (diff) | |
download | mana-ff6cd3ac0855cf516e364382153a77f61521ccdb.tar.gz mana-ff6cd3ac0855cf516e364382153a77f61521ccdb.tar.bz2 mana-ff6cd3ac0855cf516e364382153a77f61521ccdb.tar.xz mana-ff6cd3ac0855cf516e364382153a77f61521ccdb.zip |
Swapped the default settings for two labels, which had been mixed up.
Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r-- | src/gui/status.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/status.cpp b/src/gui/status.cpp index 86d3f0d0..8b760427 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -48,8 +48,8 @@ StatusWindow::StatusWindow(LocalPlayer *player): // ---------------------- mLvlLabel = new gcn::Label(strprintf(_("Level: %d"), 0)); - mGpLabel = new gcn::Label(strprintf(_("Job: %d"), 0)); - mJobLvlLabel = new gcn::Label(strprintf(_("Money: %d GP"), 0)); + mJobLvlLabel = new gcn::Label(strprintf(_("Job: %d"), 0)); + mGpLabel = new gcn::Label(strprintf(_("Money: %d GP"), 0)); mHpLabel = new gcn::Label(_("HP:")); mHpBar = new ProgressBar(1.0f, 80, 15, 0, 171, 34); |