Fix Teamlist for smaller resolutions

Merc names were being printed past the end of teamlist area
This commit is contained in:
Asdow
2024-12-04 20:49:53 +02:00
parent ffccdfa654
commit 20a33893d9
+1 -1
View File
@@ -5351,7 +5351,7 @@ UINT32 MapScreenHandle(void)
else else
maxNumberOfMercVisibleInStrategyList = 51; maxNumberOfMercVisibleInStrategyList = 51;
} }
else if (iResolution < _1024x768) else if ( iResolution >= _800x600 && iResolution < _1024x768)
{ {
maxNumberOfMercVisibleInStrategyList = 34; maxNumberOfMercVisibleInStrategyList = 34;
} }