summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-24 22:21:37 +0000
committerdploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-24 22:21:37 +0000
commit6388931826b0bced2cd7f185b85e2f3d299b2f71 (patch)
treef53bcd724693aa7c9b6450aa3247db9c245d84fe /crawl-ref/source
parentb7986051e76f012cc8cbce381b9dd9bfff12513c (diff)
downloadcrawl-ref-6388931826b0bced2cd7f185b85e2f3d299b2f71.tar.gz
crawl-ref-6388931826b0bced2cd7f185b85e2f3d299b2f71.zip
Changed magic/health bar colours (the main colours are now lightgreen and
lightblue, respectively). I believe that these convey the main information and that the amount gained is only secondary. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4597 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/output.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 87b252d1ee..b41c5b3510 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -167,12 +167,12 @@ class colour_bar
int m_request_redraw_after; // force a redraw at this turn count
};
-colour_bar HP_Bar(GREEN, LIGHTGREEN, RED, DARKGRAY);
+colour_bar HP_Bar(LIGHTGREEN, GREEN, RED, DARKGRAY);
#ifdef USE_TILE
colour_bar MP_Bar(BLUE, BLUE, LIGHTBLUE, DARKGRAY);
#else
-colour_bar MP_Bar(BLUE, LIGHTBLUE, MAGENTA, DARKGRAY);
+colour_bar MP_Bar(LIGHTBLUE, BLUE, MAGENTA, DARKGRAY);
#endif
// ----------------------------------------------------------------------