summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-util.h
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2010-02-20 00:39:14 -0500
committerCharles Otto <ottochar@gmail.com>2010-02-20 00:39:14 -0500
commit03011059f6b9224cf94c519a36095f55b929f1b3 (patch)
tree0646924f1bd962146b76ede9b21457a3c1376107 /crawl-ref/source/spl-util.h
parent232cad6ecab766d7081c3cc83fcd40879787dc7d (diff)
downloadcrawl-ref-03011059f6b9224cf94c519a36095f55b929f1b3.tar.gz
crawl-ref-03011059f6b9224cf94c519a36095f55b929f1b3.zip
Reverse known/unknown spell colors when reading books
For consistency with previous versions color memorized spells gray, and color unmemorized spells blue when reading books.
Diffstat (limited to 'crawl-ref/source/spl-util.h')
-rw-r--r--crawl-ref/source/spl-util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-util.h b/crawl-ref/source/spl-util.h
index f084be215a..f924e7c433 100644
--- a/crawl-ref/source/spl-util.h
+++ b/crawl-ref/source/spl-util.h
@@ -37,7 +37,7 @@ class dist;
enum spell_highlight_colours
{
COL_UNKNOWN = LIGHTGRAY, // spells for which no known brand applies.
- COL_KNOWN = LIGHTBLUE, // the spell is known (use for spellbook_contents)
+ COL_UNMEMORIZED = LIGHTBLUE, // spell hasn't been memorized (used reading spellbooks)
COL_USELESS = DARKGRAY, // ability would have no useful effect
COL_INAPPLICABLE = COL_USELESS, // ability cannot be meanifully applied (eg, no targets)
COL_USEFUL = YELLOW, // the players status makes this ability notably more useful