diff --git a/src/openrct2.c b/src/openrct2.c index e85d90d26b..7b4dd5dbe5 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; }