summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-31 16:39:53 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-31 16:39:53 +0000
commit180279d2ecb474a411318843fb3bb9144548376f (patch)
tree9dfe69e9adc492cdc8f0009bb0175d2b82790646
parent683228d82b934845eff61409a2a64e50e6ffca4b (diff)
downloadcrawl-ref-180279d2ecb474a411318843fb3bb9144548376f.tar.gz
crawl-ref-180279d2ecb474a411318843fb3bb9144548376f.zip
s/darkgray/lightblue/.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.2@1146 c06c8d41-db1a-0410-9941-cceddc491573
-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;