File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
GeneralsMD/Code/GameEngine/Source/Common Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1138,8 +1138,11 @@ Bool RecorderClass::replayMatchesGameVersion(const ReplayHeader& header)
11381138{
11391139 if (header.versionString != TheVersion->getUnicodeVersion ())
11401140 return false ;
1141- if (header.versionTimeString != TheVersion->getUnicodeBuildTime ())
1142- return false ;
1141+
1142+ // TheSuperHackers @fix Don't check build time. Otherwise SH build will show warning when opening
1143+ // retail replays, even though it's compatible.
1144+ // if (header.versionTimeString != TheVersion->getUnicodeBuildTime())
1145+ // return false;
11431146 if (header.versionNumber != TheVersion->getVersionNumber ())
11441147 return false ;
11451148 if (header.exeCRC != TheGlobalData->m_exeCRC )
You can’t perform that action at this time.
0 commit comments