diff --git a/OptiScaler/upscalers/dlss/DLSSFeature_Dx12.cpp b/OptiScaler/upscalers/dlss/DLSSFeature_Dx12.cpp index e6bbad6a..97e40765 100644 --- a/OptiScaler/upscalers/dlss/DLSSFeature_Dx12.cpp +++ b/OptiScaler/upscalers/dlss/DLSSFeature_Dx12.cpp @@ -67,12 +67,9 @@ bool DLSSFeatureDx12::Init(ID3D12Device* InDevice, ID3D12GraphicsCommandList* In } while (false); - bool rcasEnabled = isVersionOrBetter(Version(), { 2, 5, 1 }); - if (initResult) { - if (Config::Instance()->RcasEnabled.value_or(rcasEnabled)) - RCAS = std::make_unique("RCAS", InDevice); + RCAS = std::make_unique("RCAS", InDevice); if (!Config::Instance()->OverlayMenu.value_or_default() && (Imgui == nullptr || Imgui.get() == nullptr)) Imgui = std::make_unique(Util::GetProcessWindow(), InDevice); diff --git a/OptiScaler/upscalers/dlssd/DLSSDFeature_Dx12.cpp b/OptiScaler/upscalers/dlssd/DLSSDFeature_Dx12.cpp index 8083dc54..dd1a4d22 100644 --- a/OptiScaler/upscalers/dlssd/DLSSDFeature_Dx12.cpp +++ b/OptiScaler/upscalers/dlssd/DLSSDFeature_Dx12.cpp @@ -67,12 +67,9 @@ bool DLSSDFeatureDx12::Init(ID3D12Device* InDevice, ID3D12GraphicsCommandList* I } while (false); - bool rcasEnabled = true; - if (initResult) { - if (Config::Instance()->RcasEnabled.value_or(rcasEnabled)) - RCAS = std::make_unique("RCAS", InDevice); + RCAS = std::make_unique("RCAS", InDevice); if (!Config::Instance()->OverlayMenu.value_or_default() && (Imgui == nullptr || Imgui.get() == nullptr)) Imgui = std::make_unique(Util::GetProcessWindow(), InDevice);