summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cio.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/cio.cc')
-rw-r--r--crawl-ref/source/cio.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/crawl-ref/source/cio.cc b/crawl-ref/source/cio.cc
index 370492536b..13059d67fd 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, get_cursor_region());
+ cgotoxy(x, y, get_cursor_region());
}
int line_reader::read_line(bool clear_previous)
@@ -417,6 +417,12 @@ int line_reader::read_line(bool clear_previous)
start_x = wherex();
start_y = wherey();
+#ifndef USE_TILE
+ // FIXME: what exactly is going on here?
+ // Update the active region.
+ cgotoxy(start_x, start_y, GOTO_CRT);
+#endif
+
length = strlen(buffer);
// Remember the previous cursor position, if valid.
@@ -479,7 +485,7 @@ void line_reader::backspace()
char *c = cur;
while (*c)
{
- *c = c[1];
+ *c = *(c+1);
c++;
}
--pos;