From 4732a06003303aee2f86c671565278174bad66c8 Mon Sep 17 00:00:00 2001 From: Silent Date: Wed, 15 May 2024 13:59:29 +0200 Subject: [PATCH] III: Tighten III Aircraft verison check A theoretical future 0x101 version should already be SP-aware. --- SilentPatchIII/SilentPatchIII.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SilentPatchIII/SilentPatchIII.cpp b/SilentPatchIII/SilentPatchIII.cpp index 53ed3fb..a4c7a5f 100644 --- a/SilentPatchIII/SilentPatchIII.cpp +++ b/SilentPatchIII/SilentPatchIII.cpp @@ -41,7 +41,7 @@ namespace ModCompat auto func = (uint32_t(*)())GetProcAddress(module, "GetBuildNumber"); if (func != nullptr) { - bOldModVersion = func() < 0x200; + bOldModVersion = func() <= 0x100; } return bOldModVersion; }