aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Xbox/Network
diff options
context:
space:
mode:
authorvoid_17 <61356189+void2012@users.noreply.github.com>2026-03-06 02:46:20 +0700
committerGitHub <noreply@github.com>2026-03-06 02:46:20 +0700
commit5c6f09f39578a162652faa6bea1f10f47f6df5d1 (patch)
treed5c6e16794087544b8e004344950535c3ff2690d /Minecraft.Client/Xbox/Network
parentcbcf3de358f97ae1f687f3ffa47fcdb910e39bcb (diff)
Forgot these AUTO_VAR macros too
Remove the remaining `AUTO_VAR` macros I forgot to remove
Diffstat (limited to 'Minecraft.Client/Xbox/Network')
-rw-r--r--Minecraft.Client/Xbox/Network/PlatformNetworkManagerXbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.Client/Xbox/Network/PlatformNetworkManagerXbox.cpp b/Minecraft.Client/Xbox/Network/PlatformNetworkManagerXbox.cpp
index da6bf20f..47317146 100644
--- a/Minecraft.Client/Xbox/Network/PlatformNetworkManagerXbox.cpp
+++ b/Minecraft.Client/Xbox/Network/PlatformNetworkManagerXbox.cpp
@@ -1596,7 +1596,7 @@ bool CPlatformNetworkManagerXbox::GetGameSessionInfo(int iPad, SessionID session
bool foundSession = false;
FriendSessionInfo *sessionInfo = NULL;
- AUTO_VAR(itFriendSession, friendsSessions[iPad].begin());
+ auto = itFriendSession, friendsSessions[iPad].begin();
for(itFriendSession = friendsSessions[iPad].begin(); itFriendSession < friendsSessions[iPad].end(); ++itFriendSession)
{
sessionInfo = *itFriendSession;
@@ -1687,7 +1687,7 @@ INetworkPlayer *CPlatformNetworkManagerXbox::addNetworkPlayer(IQNetPlayer *pQNet
void CPlatformNetworkManagerXbox::removeNetworkPlayer(IQNetPlayer *pQNetPlayer)
{
INetworkPlayer *pNetworkPlayer = getNetworkPlayer(pQNetPlayer);
- for( AUTO_VAR(it, currentNetworkPlayers.begin()); it != currentNetworkPlayers.end(); it++ )
+ for( auto it = currentNetworkPlayers.begin(); it != currentNetworkPlayers.end(); it++ )
{
if( *it == pNetworkPlayer )
{