summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mpr.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-12-09 22:09:56 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-12-09 22:46:19 +0100
commitc6f7d86e7e80ae454130399b18c5ef40735a47a3 (patch)
tree809acfbec67c70cd8094fb0446c54466cfbd85af /crawl-ref/source/mpr.h
parent53b8252fdab1bcf544bcd7b6db5ffde895cce683 (diff)
downloadcrawl-ref-c6f7d86e7e80ae454130399b18c5ef40735a47a3.tar.gz
crawl-ref-c6f7d86e7e80ae454130399b18c5ef40735a47a3.zip
Add MSGCOL_LIGHTRED to msg_colour_type.
May well fix (or cause) colouring bugs due to silent conversion between colours and msg_colour_type.
Diffstat (limited to 'crawl-ref/source/mpr.h')
-rw-r--r--crawl-ref/source/mpr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/mpr.h b/crawl-ref/source/mpr.h
index e2eb48451d..43f3aa708d 100644
--- a/crawl-ref/source/mpr.h
+++ b/crawl-ref/source/mpr.h
@@ -49,7 +49,7 @@ enum msg_channel_type
enum msg_colour_type
{
- MSGCOL_BLACK = 0, // the order of these colours is important
+ MSGCOL_BLACK = 0,
MSGCOL_BLUE,
MSGCOL_GREEN,
MSGCOL_CYAN,
@@ -61,6 +61,7 @@ enum msg_colour_type
MSGCOL_LIGHTBLUE,
MSGCOL_LIGHTGREEN,
MSGCOL_LIGHTCYAN,
+ MSGCOL_LIGHTRED,
MSGCOL_LIGHTMAGENTA,
MSGCOL_YELLOW,
MSGCOL_WHITE,