mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
Server browser: always display the number of servers found so far
This commit is contained in:
parent
def84a2cc0
commit
07452bc8fb
1 changed files with 3 additions and 2 deletions
|
@ -8612,8 +8612,9 @@ static void M_DrawServerCountAndHorizontalBar(void)
|
|||
default:
|
||||
if (serverlistultimatecount > serverlistcount)
|
||||
{
|
||||
text = va("Pinging %d servers%.*s",
|
||||
serverlistultimatecount - serverlistcount,
|
||||
text = va("%d/%d servers found%.*s",
|
||||
serverlistcount,
|
||||
serverlistultimatecount,
|
||||
I_GetTime() / NEWTICRATE % 4, "...");
|
||||
}
|
||||
else if (serverlistcount > 0)
|
||||
|
|
Loading…
Reference in a new issue