From 5a7bbf71fe5c3ec077a68fa2e4a45245e45591ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 20 Jun 2016 00:05:03 +0200 Subject: [PATCH] Fix condition guarding memory checksum verification --- src/openrct2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2.c b/src/openrct2.c index 918a99dda1..f1e38c0161 100644 --- a/src/openrct2.c +++ b/src/openrct2.c @@ -571,7 +571,7 @@ bool openrct2_setup_rct2_segment() } #endif // defined(__unix__) -#if !defined(NO_RCT2) || !defined(__WINDOWS__) +#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.