From cf33ffcf7a1e4b27b601625c6866a2801897b8ae Mon Sep 17 00:00:00 2001
From: "Rob Swindell (on Windows 11)" <rob@synchro.net>
Date: Fri, 1 Nov 2024 16:26:28 -0700
Subject: [PATCH] The wizard progress bar is wider now (more pages), so need to
 adjust position

to not overwrite help "screen" borders
---
 src/sbbs3/scfg/scfg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sbbs3/scfg/scfg.c b/src/sbbs3/scfg/scfg.c
index 7831e1398c..eab1541de7 100644
--- a/src/sbbs3/scfg/scfg.c
+++ b/src/sbbs3/scfg/scfg.c
@@ -174,7 +174,7 @@ void wizard_msg(int page, int total, const char* text)
 {
 	uifc.showbuf(WIN_HLP|WIN_DYN|WIN_L2R, 2, 2, 76, 20, "Setup Wizard", text, NULL, NULL);
 	if(page > 0 && page < total) {
-		int x = (uifc.scrn_width / 2) + 22;
+		int x = (uifc.scrn_width / 2) + 21;
 		int y = 21;
 		uifc.printf(x, y, uifc.cclr|(uifc.bclr<<4),  "%*.*s", total, total
 			, "\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1");
-- 
GitLab