From cb7614ea8d8bfcc003900e2fa5cdf460143a91ba Mon Sep 17 00:00:00 2001 From: Abyss <29151752+abyssnyan@users.noreply.github.com> Date: Tue, 28 Apr 2026 20:59:47 +0300 Subject: [PATCH] Fixing Ffx path typos in Config.cpp (#977) Ffx SR/FG/RR/RC path name typos fixed. FfxSRDx12Path -> FfxDx12SRPath and so on... --- OptiScaler/Config.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OptiScaler/Config.cpp b/OptiScaler/Config.cpp index 21c80447..5ebf565c 100644 --- a/OptiScaler/Config.cpp +++ b/OptiScaler/Config.cpp @@ -663,10 +663,10 @@ bool Config::Reload(std::filesystem::path iniPath) NvapiDllPath.set_from_config(readWString("Libraries", "NvapiPath")); FfxDx12Path.set_from_config(readWString("Libraries", "FfxDx12Path")); - FfxDx12SRPath.set_from_config(readWString("Libraries", "FfxSRDx12Path")); - FfxDx12FGPath.set_from_config(readWString("Libraries", "FfxFGDx12Path")); - FfxDx12RRPath.set_from_config(readWString("Libraries", "FfxRRDx12Path")); - FfxDx12RCPath.set_from_config(readWString("Libraries", "FfxRCDx12Path")); + FfxDx12SRPath.set_from_config(readWString("Libraries", "FfxDx12SRPath")); + FfxDx12FGPath.set_from_config(readWString("Libraries", "FfxDx12FGPath")); + FfxDx12RRPath.set_from_config(readWString("Libraries", "FfxDx12RRPath")); + FfxDx12RCPath.set_from_config(readWString("Libraries", "FfxDx12RCPath")); FfxVkPath.set_from_config(readWString("Libraries", "FfxVkPath")); XeSSLibrary.set_from_config(readWString("Libraries", "XeSSPath"));