summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cio.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-12-10 16:32:41 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-12-10 16:32:41 +0100
commit7a07c0abc080182f8f473ff853b69ed5953b82d2 (patch)
tree5c64dfed810b16e4517bac722d9ac47807169e0c /crawl-ref/source/cio.cc
parentf1ef80cc67b73ae63865564ece8032e9b2276234 (diff)
downloadcrawl-ref-7a07c0abc080182f8f473ff853b69ed5953b82d2.tar.gz
crawl-ref-7a07c0abc080182f8f473ff853b69ed5953b82d2.zip
Remove unused GOTO_LAST.
Diffstat (limited to 'crawl-ref/source/cio.cc')
-rw-r--r--crawl-ref/source/cio.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/cio.cc b/crawl-ref/source/cio.cc
index 87f37df0cd..9c7a705c57 100644
--- a/crawl-ref/source/cio.cc
+++ b/crawl-ref/source/cio.cc
@@ -401,7 +401,7 @@ void line_reader::cursorto(int ncx)
{
int x = (start_x + ncx - 1) % wrapcol + 1;
int y = start_y + (start_x + ncx - 1) / wrapcol;
- ::cgotoxy(x, y, GOTO_LAST);
+ ::cgotoxy(x, y);
}
int line_reader::read_line(bool clear_previous)