summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-01-30 16:08:19 -0700
committerIra Rice <irarice@gmail.com>2009-01-30 16:08:19 -0700
commitff6cd3ac0855cf516e364382153a77f61521ccdb (patch)
tree0f2d8f6714ab27dd573be69b4dfed321d13dab30 /src/gui
parent678009add727cc34f9c157f2cf41c4c0ac8f7f30 (diff)
downloadMana-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>
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/status.cpp4
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);