diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-07 23:01:49 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-07 23:01:49 -0600 |
commit | ecb099225b673549179027af0d430bd9b1cfe99d (patch) | |
tree | 819909ca8e26a14ec2b04edfdc9812a5fb0c43b2 /src | |
parent | e2d405dd5a628a021941139c4b90c11bb9cba30d (diff) | |
download | mana-ecb099225b673549179027af0d430bd9b1cfe99d.tar.gz mana-ecb099225b673549179027af0d430bd9b1cfe99d.tar.bz2 mana-ecb099225b673549179027af0d430bd9b1cfe99d.tar.xz mana-ecb099225b673549179027af0d430bd9b1cfe99d.zip |
Restore the MP bar to the darker blue it had
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/status.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/status.cpp b/src/gui/status.cpp index 7003e431..473ce6bb 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -318,7 +318,7 @@ void StatusWindow::updateMPBar(ProgressBar *bar, bool showMax) if (player_node->MATK <= 0) bar->setColor(100, 100, 100); // grey, to indicate that we lack magic else - bar->setColor(143, 192, 211); // blue, to indicate that we have magic + bar->setColor(26, 102, 230); // blue, to indicate that we have magic bar->setProgress((float) player_node->mMp / (float) player_node->mMaxMp); } |