Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Generals/Code/GameEngine/Include/Common/crc.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class CRC
// UnsignedInt get( void ) { return htonl(crc); } ///< Get the combined CRC
UnsignedInt get( void );

#if (defined(_MSC_VER) && _MSC_VER < 1300) && defined(RETAIL_COMPATIBLE_CRC)
#if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
void set( UnsignedInt v )
{
crc = v;
Expand Down Expand Up @@ -127,7 +127,7 @@ class CRC
return crc;
}

#if (defined(_MSC_VER) && _MSC_VER < 1300) && defined(RETAIL_COMPATIBLE_CRC)
#if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
void set( UnsignedInt v )
{
crc = v;
Expand Down
2 changes: 1 addition & 1 deletion Generals/Code/GameEngine/Source/Common/GlobalData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ GlobalData::GlobalData()
File *fp;
// TheSuperHackers @tweak SkyAero/xezon 27/05/2025
// Simulate the EXE's CRC value to force Network and Replay compatibility with another build.
#if (defined(_MSC_VER) && _MSC_VER < 1300) && defined(RETAIL_COMPATIBLE_CRC)
#if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC

#define GENERALS_108_CD_EXE_CRC 0x93d1eab4
#define GENERALS_108_STEAM_EXE_CRC 0x8d6e4dd7
Expand Down
4 changes: 2 additions & 2 deletions GeneralsMD/Code/GameEngine/Include/Common/crc.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class CRC
// UnsignedInt get( void ) { return htonl(crc); } ///< Get the combined CRC
UnsignedInt get( void );

#if (defined(_MSC_VER) && _MSC_VER < 1300) && defined(RETAIL_COMPATIBLE_CRC)
#if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
void set( UnsignedInt v )
{
crc = v;
Expand Down Expand Up @@ -127,7 +127,7 @@ class CRC
return crc;
}

#if (defined(_MSC_VER) && _MSC_VER < 1300) && defined(RETAIL_COMPATIBLE_CRC)
#if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
void set( UnsignedInt v )
{
crc = v;
Expand Down
2 changes: 1 addition & 1 deletion GeneralsMD/Code/GameEngine/Source/Common/GlobalData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ GlobalData::GlobalData()
File *fp;
// TheSuperHackers @tweak SkyAero/xezon 27/05/2025
// Simulate the EXE's CRC value to force Network and Replay compatibility with another build.
#if (defined(_MSC_VER) && _MSC_VER < 1300) && defined(RETAIL_COMPATIBLE_CRC)
#if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC

#define GENERALSMD_104_CD_EXE_CRC 0x4f6c5afe
#define GENERALSMD_104_STEAM_EXE_CRC 0xcb430f5f
Expand Down
Loading