summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-01 08:48:05 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-01 08:48:05 +0000
commitd758cad3c69be5d4235119153a592018dbedfbd4 (patch)
tree48775071fd386cc64693751b437186f5877c2c4c /crawl-ref/source/tutorial.cc
parentb1d040e4e9cfd77a49cc5942e015914206b804bb (diff)
downloadcrawl-ref-d758cad3c69be5d4235119153a592018dbedfbd4.tar.gz
crawl-ref-d758cad3c69be5d4235119153a592018dbedfbd4.zip
Tutorial linewrapping fix for DOS.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1164 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 9c38a90109..a9e4b2eb91 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -251,7 +251,7 @@ static formatted_string tut_starting_info(unsigned int width)
result += "Press <white>Esc</white> to fast forward to the game start.";
- return formatted_string::parse_string(result);
+ return formatted_string::parse_block(result);
}
#ifdef TUTORIAL_DEBUG
@@ -408,7 +408,7 @@ static formatted_string tutorial_map_intro()
result += " --more-- Press <white>Escape</white> to skip the basics";
linebreak_string2(result,get_tutorial_cols());
- return formatted_string::parse_string(result);
+ return formatted_string::parse_block(result, false);
}
static formatted_string tutorial_stats_intro()
@@ -459,7 +459,7 @@ static formatted_string tutorial_message_intro()
result += " --more-- Press <white>Escape</white> to skip the basics";
linebreak_string2(result,get_tutorial_cols());
- return formatted_string::parse_string(result);
+ return formatted_string::parse_block(result, false);
}
static void tutorial_movement_info()