From c2dccf3a2a823f50467af3678fb8bd2ebef815cf 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 96956972..3bd0a916 100644 --- a/OptiScaler/Config.cpp +++ b/OptiScaler/Config.cpp @@ -710,10 +710,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"));