@@ -1081,7 +1081,8 @@ void CServerBrowser::AddServerToList(CServerListItem* pServer, const ServerBrows
10811081 const SString strVersion = !bIncludeOtherVersions ? " " : pServer->strVersion ;
10821082 const SString strVersionSortKey = pServer->strVersionSortKey + pServer->strTieBreakSortKey ;
10831083
1084- const SString strPlayers = pServer->nMaxPlayers == 0 ? " " : SString (" %d / %d" , pServer->nPlayers , pServer->nMaxPlayers );
1084+ const SString strVerified = pServer->isStatusVerified ? " " : " *" ;
1085+ const SString strPlayers = pServer->nMaxPlayers == 0 ? " " : SString (" %d / %d %s" , pServer->nPlayers , pServer->nMaxPlayers , *strVerified);
10851086 const SString strPlayersSortKey = SString (" %04d-" , pServer->nMaxPlayers ? pServer->nPlayers + 1 : 0 ) + pServer->strTieBreakSortKey ;
10861087
10871088 const SString strPing = pServer->nPing == 9999 ? " " : SString (" %d" , pServer->nPing );
@@ -1125,6 +1126,12 @@ void CServerBrowser::AddServerToList(CServerListItem* pServer, const ServerBrows
11251126 m_pServerList[Type]->SetItemColor (iIndex, m_hPing[Type], color.R , color.G , color.B , color.A );
11261127 m_pServerList[Type]->SetItemColor (iIndex, m_hGame[Type], color.R , color.G , color.B , color.A );
11271128
1129+ if (!pServer->isStatusVerified )
1130+ {
1131+ SColor orange = SColorRGBA (230 , 200 , 180 , color.A );
1132+ m_pServerList[Type]->SetItemColor (iIndex, m_hPlayers[Type], orange.R , orange.G , orange.B , orange.A );
1133+ }
1134+
11281135 // If the index was modified from the original, then update all indexes because it means there was some sort
11291136 if (pServer->iRowIndex != iIndex)
11301137 UpdateRowIndexMembers (Type);
0 commit comments