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 }; 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),