Eric Pouech : conhost: Initialize color_map when creating an alternate screen buffer.
Module: wine Branch: master Commit: ec05c03463368ed0f5309def116c88a4376d8db6 URL: https://gitlab.winehq.org/wine/wine/-/commit/ec05c03463368ed0f5309def116c88a... Author: Eric Pouech <eric.pouech(a)gmail.com> Date: Wed Jan 11 14:07:17 2023 +0100 conhost: Initialize color_map when creating an alternate screen buffer. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54287 Signed-off-by: Eric Pouech <eric.pouech(a)gmail.com> --- programs/conhost/conhost.c | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/conhost/conhost.c b/programs/conhost/conhost.c index bf46e6b1c18..800e8bab822 100644 --- a/programs/conhost/conhost.c +++ b/programs/conhost/conhost.c @@ -96,6 +96,7 @@ static struct screen_buffer *create_screen_buffer( struct console *console, int screen_buffer->attr = console->active->attr; screen_buffer->popup_attr = console->active->attr; screen_buffer->font = console->active->font; + memcpy( screen_buffer->color_map, console->active->color_map, sizeof(console->active->color_map) ); if (screen_buffer->font.face_len) {
participants (1)
-
Alexandre Julliard