summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-31 16:38:41 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-31 16:38:41 +0000
commitd1301dcca9cfe0cb0705e0603875ee733a96edbb (patch)
tree0cdaebb1f1be8aa815577ed8c34075c7ea1fc7dd /crawl-ref/source/tutorial.cc
parentd9016a2b56df0219dd97a0aca3b7f14223da23ac (diff)
downloadcrawl-ref-d1301dcca9cfe0cb0705e0603875ee733a96edbb.tar.gz
crawl-ref-d1301dcca9cfe0cb0705e0603875ee733a96edbb.zip
Convert darkgrey to lightblue for the tutorial.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1145 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index b4ad8bf233..aa842b9e79 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -242,9 +242,9 @@ static formatted_string tut_starting_info(unsigned int width)
linebreak_string2(text, width);
result += formatted_string::parse_string(text);
- result += " <darkgray>readme.txt</darkgray> - A very short guide to Crawl." EOL;
- result += " <darkgray>manual.txt</darkgray> - This contains all details on races, magic, skills, etc." EOL;
- result += " <darkgray>crawl_options.txt</darkgray> - Crawl's interface is highly configurable. This document " EOL;
+ result += " <lightblue>readme.txt</lightblue> - A very short guide to Crawl." EOL;
+ result += " <lightblue>manual.txt</lightblue> - This contains all details on races, magic, skills, etc." EOL;
+ result += " <lightblue>crawl_options.txt</lightblue> - Crawl's interface is highly configurable. This document " EOL;
result += " explains all the options." EOL;
result += EOL;
result += "Press <white>Space</white> to proceed to the basics (the screen division and movement)." EOL;
@@ -360,7 +360,7 @@ static formatted_string tutorial_debug()
result += info;
result += "</white>" EOL EOL;
- result += "<darkgray>";
+ result += "<lightblue>";
for (i=0; i < TUT_EVENTS_NUM; i++)
{
snprintf(info, INFO_SIZE, "%d: %d (%s)",
@@ -379,7 +379,7 @@ static formatted_string tutorial_debug()
lbreak = true;
}
}
- result += "</darkgray>" EOL EOL;
+ result += "</lightblue>" EOL EOL;
snprintf(info, INFO_SIZE, "tutorial_left: %d\n", Options.tutorial_left);
result += info;