summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/os_win32.c6
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/src/os_win32.c b/src/os_win32.c
index ce035570d..9badbed41 100644
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -5868,9 +5868,9 @@ gotoxy(
else
{
// Move the cursor to the left edge of the screen to prevent screen
- // destruction. Insider build bug.
- if (conpty_type == 3)
- vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
+ // destruction. Insider build bug. Always enabled because it's cheap
+ // and avoids mistakes with recognizing the build.
+ vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
vtp_printf("\033[%d;%dH", y, x);
diff --git a/src/version.c b/src/version.c
index 2dc9f9bf1..4e0af78a4 100644
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2132,
+/**/
2131,
/**/
2130,