summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/message.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/message.cc')
-rw-r--r--crawl-ref/source/message.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/message.cc b/crawl-ref/source/message.cc
index 9c919f1fe5..75e1a46df1 100644
--- a/crawl-ref/source/message.cc
+++ b/crawl-ref/source/message.cc
@@ -849,7 +849,7 @@ void replay_messages(void)
{
clrscr();
- gotoxy(1, 1, GOTO_CRT);
+ cgotoxy(1, 1, GOTO_CRT);
for (int i = 0; i < num_lines - 2; i++)
{
@@ -885,7 +885,7 @@ void replay_messages(void)
break;
case FSOP_TEXT:
textcolor( colour );
- gotoxy(curcol, wherey(), GOTO_CRT);
+ cgotoxy(curcol, wherey(), GOTO_CRT);
cprintf(fs.ops[j].text.c_str());
curcol += multibyte_strlen(fs.ops[j].text);
break;