From 688a5d9cac93c5de1298cf3f13d14d71e83127d9 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 2 Jul 2017 11:12:17 +0200 Subject: [PATCH] [QuickPatch] Allow windows 5 again --- src/Components/Modules/QuickPatch.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/Components/Modules/QuickPatch.cpp b/src/Components/Modules/QuickPatch.cpp index 6172b705..bdf74bba 100644 --- a/src/Components/Modules/QuickPatch.cpp +++ b/src/Components/Modules/QuickPatch.cpp @@ -293,12 +293,9 @@ namespace Components // disable bind protection Utils::Hook::Set(0x4DACA2, 0xEB); - // require Windows 6 (Vista) - if (!Utils::IsWineEnvironment()) - { - Utils::Hook::Set(0x467ADF, 6); - Utils::Hook::Set(0x6DF5D6, '6'); - } + // require Windows 5 + Utils::Hook::Set(0x467ADF, 5); + Utils::Hook::Set(0x6DF5D6, '5'); // disable 'ignoring asset' notices Utils::Hook::Nop(0x5BB902, 5);