File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
GeneralsMD/Code/GameEngine Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class CRC
47
47
// UnsignedInt get( void ) { return htonl(crc); } ///< Get the combined CRC
48
48
UnsignedInt get ( void );
49
49
50
- #if (defined(_MSC_VER) && _MSC_VER < 1300) && defined( RETAIL_COMPATIBLE_CRC)
50
+ #if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
51
51
void set ( UnsignedInt v )
52
52
{
53
53
crc = v;
@@ -127,7 +127,7 @@ class CRC
127
127
return crc;
128
128
}
129
129
130
- #if (defined(_MSC_VER) && _MSC_VER < 1300) && defined( RETAIL_COMPATIBLE_CRC)
130
+ #if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
131
131
void set ( UnsignedInt v )
132
132
{
133
133
crc = v;
Original file line number Diff line number Diff line change @@ -990,7 +990,7 @@ GlobalData::GlobalData()
990
990
File *fp;
991
991
// TheSuperHackers @tweak SkyAero/xezon 27/05/2025
992
992
// Simulate the EXE's CRC value to force Network and Replay compatibility with another build.
993
- #if (defined(_MSC_VER) && _MSC_VER < 1300) && defined( RETAIL_COMPATIBLE_CRC)
993
+ #if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
994
994
995
995
#define GENERALS_108_CD_EXE_CRC 0x93d1eab4
996
996
#define GENERALS_108_STEAM_EXE_CRC 0x8d6e4dd7
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class CRC
47
47
// UnsignedInt get( void ) { return htonl(crc); } ///< Get the combined CRC
48
48
UnsignedInt get ( void );
49
49
50
- #if (defined(_MSC_VER) && _MSC_VER < 1300) && defined( RETAIL_COMPATIBLE_CRC)
50
+ #if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
51
51
void set ( UnsignedInt v )
52
52
{
53
53
crc = v;
@@ -127,7 +127,7 @@ class CRC
127
127
return crc;
128
128
}
129
129
130
- #if (defined(_MSC_VER) && _MSC_VER < 1300) && defined( RETAIL_COMPATIBLE_CRC)
130
+ #if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
131
131
void set ( UnsignedInt v )
132
132
{
133
133
crc = v;
Original file line number Diff line number Diff line change @@ -999,7 +999,7 @@ GlobalData::GlobalData()
999
999
File *fp;
1000
1000
// TheSuperHackers @tweak SkyAero/xezon 27/05/2025
1001
1001
// Simulate the EXE's CRC value to force Network and Replay compatibility with another build.
1002
- #if (defined(_MSC_VER) && _MSC_VER < 1300) && defined( RETAIL_COMPATIBLE_CRC)
1002
+ #if (defined(_MSC_VER) && _MSC_VER < 1300) && RETAIL_COMPATIBLE_CRC
1003
1003
1004
1004
#define GENERALSMD_104_CD_EXE_CRC 0x4f6c5afe
1005
1005
#define GENERALSMD_104_STEAM_EXE_CRC 0xcb430f5f
You can’t perform that action at this time.
0 commit comments