summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-04 01:27:02 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-04 01:27:02 +0000
commit4f24bddbe01ad958f1dd874d1b9c72bc627628ae (patch)
tree7136fb36e50618205eca1943d42829bf973782cb /crawl-ref/source/output.cc
parente2a897ff86075780500e148cfe9689d9d347cf0e (diff)
downloadcrawl-ref-4f24bddbe01ad958f1dd874d1b9c72bc627628ae.tar.gz
crawl-ref-4f24bddbe01ad958f1dd874d1b9c72bc627628ae.zip
Add spelling fixes where possible: "gray" -> "grey".
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6381 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 6ab46233b2..a3eadda080 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -158,12 +158,12 @@ class colour_bar
int m_request_redraw_after; // force a redraw at this turn count
};
-colour_bar HP_Bar(LIGHTGREEN, GREEN, RED, DARKGRAY);
+colour_bar HP_Bar(LIGHTGREEN, GREEN, RED, DARKGREY);
#ifdef USE_TILE
-colour_bar MP_Bar(BLUE, BLUE, LIGHTBLUE, DARKGRAY);
+colour_bar MP_Bar(BLUE, BLUE, LIGHTBLUE, DARKGREY);
#else
-colour_bar MP_Bar(LIGHTBLUE, BLUE, MAGENTA, DARKGRAY);
+colour_bar MP_Bar(LIGHTBLUE, BLUE, MAGENTA, DARKGREY);
#endif
// ----------------------------------------------------------------------
@@ -1658,25 +1658,25 @@ static void _print_overview_screen_equip(column_composer& cols,
else if (!you_can_wear(e_order[i], true))
{
snprintf(buf, sizeof buf,
- "%s<darkgray>(%s unavailable)</darkgray>",
+ "%s<darkgrey>(%s unavailable)</darkgrey>",
slot, slot_name_lwr);
}
else if (!you_tran_can_wear(e_order[i], true))
{
snprintf(buf, sizeof buf,
- "%s<darkgray>(%s currently unavailable)</darkgray>",
+ "%s<darkgrey>(%s currently unavailable)</darkgrey>",
slot, slot_name_lwr);
}
else if (!you_can_wear(e_order[i]))
{
snprintf(buf, sizeof buf,
- "%s<lightgray>(%s restricted)</lightgray>",
+ "%s<lightgrey>(%s restricted)</lightgrey>",
slot, slot_name_lwr);
}
else
{
snprintf(buf, sizeof buf,
- "<darkgray>(no %s)</darkgray>", slot_name_lwr);
+ "<darkgrey>(no %s)</darkgrey>", slot_name_lwr);
}
cols.add_formatted(2, buf, false);
}