From a88b6b502ed79fbcdb76e1ca9b359b3f6940f857 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 12 Oct 2024 16:04:08 +0200 Subject: [PATCH] minor change (no functional change) --- src/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/init.c b/src/init.c index 7bbacd6e..a982b723 100644 --- a/src/init.c +++ b/src/init.c @@ -6608,7 +6608,7 @@ void DisplayExitMessage(char *format, va_list ap) num_lines_printed = DrawTextBufferVA(sx, sy, format, ap, font_2, - line_length, line_length, max_lines, -1, -1, -1, + line_length, -1, max_lines, -1, -1, -1, 0, BLIT_ON_BACKGROUND, TRUE, TRUE, FALSE); sy += (num_lines_printed + 3) * font_height; @@ -6617,7 +6617,7 @@ void DisplayExitMessage(char *format, va_list ap) num_lines_printed = DrawTextBuffer(sx, sy, program.log_filename, font_2, - line_length, line_length, max_lines, -1, -1, -1, + line_length, -1, max_lines, -1, -1, -1, 0, BLIT_ON_BACKGROUND, TRUE, TRUE, FALSE); DrawTextSCentered(SYSIZE - 20, font_3, "Press any key or button to exit"); -- 2.34.1