1
0

Declared one mutex as mutable in order to allow for const correct get accessors.

This commit is contained in:
jfhumann
2014-04-19 17:53:02 +02:00
parent 5bed1c09bc
commit 4dd7610381
3 changed files with 7 additions and 7 deletions

View File

@@ -275,7 +275,7 @@ bool cServer::InitServer(cIniFile & a_SettingsIni)
int cServer::GetNumPlayers(void)
int cServer::GetNumPlayers(void) const
{
cCSLock Lock(m_CSPlayerCount);
return m_PlayerCount;