Skip to content

Commit a059c0b

Browse files
committed
Reverted original lines.
1 parent 634eb6b commit a059c0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GeneralsMD/Code/GameEngine/Source/GameNetwork/GameInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1501,7 +1501,7 @@ Bool ParseAsciiStringToGameInfo(GameInfo *game, AsciiString options)
15011501
if (patchedClients & (1 << i))
15021502
newSlot[i].setPatchVersion(1337);
15031503

1504-
game->setSlot(i, newSlot[i]);
1504+
game->setSlot(i,newSlot[i]);
15051505
}
15061506

15071507
game->setMap(mapName);

GeneralsMD/Code/GameEngine/Source/GameNetwork/LANAPIhandlers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ void LANAPI::handleRequestJoin( LANMessage *msg, UnsignedInt senderIP )
350350
newSlot.setSerial(msg->GameToJoin.serial);
351351
if (msg->GameToJoin.patchVersion == 1337)
352352
newSlot.setPatchVersion(msg->GameToJoin.patchVersion);
353-
m_currentGame->setSlot(player, newSlot);
353+
m_currentGame->setSlot(player,newSlot);
354354
DEBUG_LOG(("LANAPI::handleRequestJoin - added player %ls at ip 0x%08x to the game", msg->name, senderIP));
355355

356356
OnPlayerJoin(player, UnicodeString(msg->name));

0 commit comments

Comments
 (0)