1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 04:23:20 +01:00

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

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;
}