From a4a75147033322469a8746d439590e633bc7d05d Mon Sep 17 00:00:00 2001 From: RD42 <42702181+dashr9230@users.noreply.github.com> Date: Tue, 12 Dec 2023 22:42:03 +0800 Subject: [PATCH] [server] Rename PlayerID to playerId in CPlayerPool ctor --- server/playerpool.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server/playerpool.cpp b/server/playerpool.cpp index 170b405..9d3e436 100644 --- a/server/playerpool.cpp +++ b/server/playerpool.cpp @@ -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;