From d9bcf2d94698b3709d3a6d67e2f46ee4c739bc87 Mon Sep 17 00:00:00 2001 From: Ted John Date: Wed, 4 May 2016 00:03:17 +0100 Subject: [PATCH] remove RCT2 memory checksum for Win32 NO_RCT2 --- src/openrct2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/openrct2.c b/src/openrct2.c index 91fa50fe9e..8dcb8e0f0d 100644 --- a/src/openrct2.c +++ b/src/openrct2.c @@ -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; }