aboutsummaryrefslogtreecommitdiffstats
path: root/src/msdos.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/msdos.c')
-rw-r--r--src/msdos.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/msdos.c b/src/msdos.c
index dda24cc868f..fefefd9147c 100644
--- a/src/msdos.c
+++ b/src/msdos.c
@@ -1593,14 +1593,16 @@ IT_display_cursor (int on)
1593 ScreenSetCursor (current_pos_Y, current_pos_X); 1593 ScreenSetCursor (current_pos_Y, current_pos_X);
1594 cursor_cleared = 0; 1594 cursor_cleared = 0;
1595 if (tty->termscript) 1595 if (tty->termscript)
1596 fprintf (tty->termscript, "\nCURSOR ON"); 1596 fprintf (tty->termscript, "\nCURSOR ON (%dx%d)",
1597 current_pos_Y, current_pos_X);
1597 } 1598 }
1598 else if (!on && !cursor_cleared) 1599 else if (!on && !cursor_cleared)
1599 { 1600 {
1600 ScreenSetCursor (-1, -1); 1601 ScreenSetCursor (-1, -1);
1601 cursor_cleared = 1; 1602 cursor_cleared = 1;
1602 if (tty->termscript) 1603 if (tty->termscript)
1603 fprintf (tty->termscript, "\nCURSOR OFF"); 1604 fprintf (tty->termscript, "\nCURSOR OFF (%dx%d)",
1605 current_pos_Y, current_pos_X);
1604 } 1606 }
1605} 1607}
1606 1608