From f3a6bed5558bf14e787225067c119ead9be7d094 Mon Sep 17 00:00:00 2001 From: TheRazerMD <78263903+TheRazerMD@users.noreply.github.com> Date: Mon, 14 Jul 2025 12:08:08 +0200 Subject: [PATCH 1/2] Added FH5 quirks --- OptiScaler/misc/Quirks.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/OptiScaler/misc/Quirks.h b/OptiScaler/misc/Quirks.h index e9978c9c..87808742 100644 --- a/OptiScaler/misc/Quirks.h +++ b/OptiScaler/misc/Quirks.h @@ -82,6 +82,11 @@ static const QuirkEntry quirkTable[] = { // Forgive Me Father 2 QUIRK_ENTRY("fmf2-win64-shipping.exe", GameQuirk::DisableFSR2Inputs, GameQuirk::DisableFSR3Inputs), + // Forza Horizon 5 + // SL spoof enough to unlock everything DLSS + QUIRK_ENTRY("forzahorizon5.exe", GameQuirk::DisableFSR2Inputs, GameQuirk::DisableFSR3Inputs, + GameQuirk::DisableDxgiSpoofing), + // Revenge of the Savage Planet QUIRK_ENTRY("towers-win64-shipping.exe", GameQuirk::DisableFSR2Inputs, GameQuirk::DisableFSR3Inputs), From a1b1c33847319f656e7128c4721dfb758205807e Mon Sep 17 00:00:00 2001 From: TheRazerMD <78263903+TheRazerMD@users.noreply.github.com> Date: Mon, 14 Jul 2025 12:53:03 +0200 Subject: [PATCH 2/2] Disabled ASI plugins loading by default (#593) --- OptiScaler.ini | 2 +- OptiScaler/Config.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/OptiScaler.ini b/OptiScaler.ini index 7a6205c9..1e9a8746 100644 --- a/OptiScaler.ini +++ b/OptiScaler.ini @@ -583,7 +583,7 @@ UEIntelAtomics=auto Path=auto ; OptiScaler loads *.asi files in plugins folder -; true or false - Default (auto) is true +; true or false - Default (auto) is false LoadAsiPlugins=auto ; Loads SpecialK64.dll from game's exe folder diff --git a/OptiScaler/Config.h b/OptiScaler/Config.h index a6a5b0e3..6bed6747 100644 --- a/OptiScaler/Config.h +++ b/OptiScaler/Config.h @@ -344,7 +344,7 @@ class Config CustomOptional PluginPath { L"plugins" }; CustomOptional LoadSpecialK { false }; CustomOptional LoadReShade { false }; - CustomOptional LoadAsiPlugins { true }; + CustomOptional LoadAsiPlugins { false }; // Frame Generation CustomOptional FGType { FGType::NoFG };