mirror of
https://github.com/1dot13/source.git
synced 2026-09-02 14:36:06 +02:00
Fix Teamlist for smaller resolutions
Merc names were being printed past the end of teamlist area
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user