[server] Rename PlayerID to playerId in CPlayerPool ctor

This commit is contained in:
RD42 2023-12-12 22:42:03 +08:00
parent 64341cb918
commit a4a7514703

View File

@ -3,11 +3,11 @@
CPlayerPool::CPlayerPool()
{
for(PLAYERID PlayerID = 0; PlayerID < MAX_PLAYERS; PlayerID++) {
m_bPlayerSlotState[PlayerID] = FALSE;
field_2599C[PlayerID] = 0;
field_23A5C[PlayerID] = 0;
field_3E8C[PlayerID] = pNetGame->GetTime();
for(PLAYERID playerId = 0; playerId < MAX_PLAYERS; playerId++) {
m_bPlayerSlotState[playerId] = FALSE;
field_2599C[playerId] = 0;
field_23A5C[playerId] = 0;
field_3E8C[playerId] = pNetGame->GetTime();
}
field_30964 = 0;
field_30968 = 0;