Skip to content

Commit fedb4a6

Browse files
committed
Renamed exe and ini variables.
1 parent f0b8460 commit fedb4a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

GeneralsMD/Code/GameEngine/Include/GameNetwork/LANAPI.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,8 @@ struct LANMessage
425425

426426
struct
427427
{
428-
UnsignedInt exeHash;
429-
UnsignedInt iniHash;
428+
UnsignedInt exeCRC;
429+
UnsignedInt iniCRC;
430430
UnsignedInt productVersion;
431431
Char gitTagOrHash[33];
432432
WideChar productName[129];

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ void LANAPI::sendProductInfoMessage(Int messageType, UnsignedInt senderIP)
4747
fillInLANMessage(&msg);
4848
msg.messageType = (LANMessage::Type)messageType;
4949

50-
msg.ProductInfo.exeHash = TheGlobalData->m_exeCRC;
51-
msg.ProductInfo.iniHash = TheGlobalData->m_iniCRC;
50+
msg.ProductInfo.exeCRC = TheGlobalData->m_exeCRC;
51+
msg.ProductInfo.iniCRC = TheGlobalData->m_iniCRC;
5252
msg.ProductInfo.productVersion = TheVersion->getVersionNumber();
5353
strlcpy(msg.ProductInfo.gitTagOrHash, TheVersion->getAsciiGitTagOrHash().str(), ARRAY_SIZE(msg.ProductInfo.gitTagOrHash));
5454
wcslcpy(msg.ProductInfo.productName, TheVersion->getUnicodeProductString().str(), ARRAY_SIZE(msg.ProductInfo.productName));

0 commit comments

Comments
 (0)