summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/format.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/format.cc b/crawl-ref/source/format.cc
index 110ec3e555..be3eb2614c 100644
--- a/crawl-ref/source/format.cc
+++ b/crawl-ref/source/format.cc
@@ -153,11 +153,11 @@ void formatted_string::parse_string1(
if (bound != endpos)
bound += strlen(EOL);
else
- bound = 999;
+ bound = 998;
- fs.cprintf(currs.substr(0, bound));
- if (currs.size() > bound)
- currs = currs.substr(bound);
+ fs.cprintf(currs.substr(0, bound + 1));
+ if (currs.size() > bound + 1)
+ currs = currs.substr(bound + 1);
else
currs.clear();
tag--;