summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/menu.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-20 16:54:00 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-20 16:54:00 +0000
commitd04f647d2a64423af89b497c4daab8b452e7bf1c (patch)
treeef6202b2386fdcacdd4a16015ad2c383815c8ff2 /crawl-ref/source/menu.cc
parent3548833cfbab7a46fe339542183fa65f276ea167 (diff)
downloadcrawl-ref-d04f647d2a64423af89b497c4daab8b452e7bf1c.tar.gz
crawl-ref-d04f647d2a64423af89b497c4daab8b452e7bf1c.zip
Tutorial tweaks:
* Fixed status display commentary wiping out the status display on curses. * Fixed doubled %% on Unix (a plague on whoever wrote cprintf() in libw32c.cc). * Fixed reference to get_number_of_cols() before curses initialisation. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1073 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/menu.cc')
-rw-r--r--crawl-ref/source/menu.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/crawl-ref/source/menu.cc b/crawl-ref/source/menu.cc
index 35e054f0d9..74e0044e4c 100644
--- a/crawl-ref/source/menu.cc
+++ b/crawl-ref/source/menu.cc
@@ -1218,13 +1218,11 @@ void print_formatted_paragraph(std::string &s, int maxcol, int channel)
{
if (s[loc] == '\n') {
text = s.substr(oldloc, loc-oldloc);
-// formatted_mpr( formatted_string::parse_string(text), channel );
formatted_message_history( text, channel );
oldloc = ++loc;
}
loc++;
}
-// formatted_mpr( formatted_string::parse_string( s.substr(oldloc, loc-oldloc) ), channel );
formatted_message_history( s.substr(oldloc, loc-oldloc), channel );
}