remove RCT2 memory checksum for Win32 NO_RCT2

This commit is contained in:
Ted John 2016-05-04 00:03:17 +01:00 committed by Michał Janiszewski
parent 30d0e35b17
commit 858a781347
1 changed files with 2 additions and 0 deletions

View File

@ -571,6 +571,7 @@ bool openrct2_setup_rct2_segment()
}
#endif // defined(__unix__)
#if !defined(NO_RCT2) || !defined(__WINDOWS__)
// Check that the expected data is at various addresses.
// Start at 0x9a6000, which is start of .data, to skip the region containing addresses to DLL
// calls, which can be changed by windows/wine loader.
@ -583,6 +584,7 @@ bool openrct2_setup_rct2_segment()
log_warning("c2 = %u, expected %u, match %d", c2, exp_c2, c2 == exp_c2);
return false;
}
#endif
return true;
}