summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/os_win32.c10
-rw-r--r--src/version.c2
2 files changed, 10 insertions, 2 deletions
diff --git a/src/os_win32.c b/src/os_win32.c
index 3627532ca..97fc2a401 100644
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -6031,7 +6031,10 @@ insert_lines(unsigned cLines)
{
fill.Char.AsciiChar = ' ';
- fill.Attributes = g_attrDefault;
+ if (!USE_VTP)
+ fill.Attributes = g_attrCurrent;
+ else
+ fill.Attributes = g_attrDefault;
set_console_color_rgb();
@@ -6085,7 +6088,10 @@ delete_lines(unsigned cLines)
{
fill.Char.AsciiChar = ' ';
- fill.Attributes = g_attrDefault;
+ if (!USE_VTP)
+ fill.Attributes = g_attrCurrent;
+ else
+ fill.Attributes = g_attrDefault;
set_console_color_rgb();
diff --git a/src/version.c b/src/version.c
index 8509e0666..df3aa4813 100644
--- a/src/version.c
+++ b/src/version.c
@@ -780,6 +780,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 938,
+/**/
937,
/**/
936,