From 20a33893d997bb0eff754237e7087631f61cd6fb Mon Sep 17 00:00:00 2001 From: Asdow <20314541+Asdow@users.noreply.github.com> Date: Wed, 4 Dec 2024 20:49:53 +0200 Subject: [PATCH] Fix Teamlist for smaller resolutions Merc names were being printed past the end of teamlist area --- Strategic/mapscreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Strategic/mapscreen.cpp b/Strategic/mapscreen.cpp index d283a09a..15eda907 100644 --- a/Strategic/mapscreen.cpp +++ b/Strategic/mapscreen.cpp @@ -5351,7 +5351,7 @@ UINT32 MapScreenHandle(void) else maxNumberOfMercVisibleInStrategyList = 51; } - else if (iResolution < _1024x768) + else if ( iResolution >= _800x600 && iResolution < _1024x768) { maxNumberOfMercVisibleInStrategyList = 34; }