summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/menu.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-04 21:39:27 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-04 21:39:27 +0000
commit85186cca64385dc3a8550f12f660dbd7bbe49061 (patch)
tree8ac495ed949347ed09af3c2bcced0223d96eeed1 /crawl-ref/source/menu.cc
parent22e8777cd20d3bf9a9bce64901c4838f99fe9326 (diff)
downloadcrawl-ref-85186cca64385dc3a8550f12f660dbd7bbe49061.tar.gz
crawl-ref-85186cca64385dc3a8550f12f660dbd7bbe49061.zip
Fix Triple Draw not updating num_marked on a deck. Fixes [2516231].
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8895 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/menu.cc')
-rw-r--r--crawl-ref/source/menu.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/menu.cc b/crawl-ref/source/menu.cc
index 88e1238cd2..982df74791 100644
--- a/crawl-ref/source/menu.cc
+++ b/crawl-ref/source/menu.cc
@@ -1560,7 +1560,7 @@ int linebreak_string2( std::string& s, int maxcol )
std::string get_linebreak_string(const std::string& s, int maxcol)
{
std::string r = s;
- linebreak_string2(r, maxcol );
+ linebreak_string2(r, maxcol);
return r;
}