Skip to content

Commit 977d5ef

Browse files
committed
Merge branch 'REMIX-4751-rtx-conf-from-envvar-path' into 'main'
[REMIX-4751] Restoring previous expectation that DXVK_RTX_CONFIG_FILE is the full config file path See merge request lightspeedrtx/dxvk-remix-nv!1800
2 parents 740b913 + a66746c commit 977d5ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dxvk/rtx_render/rtx_options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@ namespace dxvk {
12991299
const Config::Desc& desc = Config::getDesc(Config::Type::Type_RtxUser);
13001300
const std::string envVarName(desc.env);
13011301
const std::string envVarPath = !envVarName.empty() ? env::getEnvVar(envVarName.c_str()) : "";
1302-
return envVarPath.empty() ? "rtx.conf" : env::getEnvVar(desc.env.c_str()) + "\\rtx.conf";
1302+
return envVarPath.empty() ? "rtx.conf" : env::getEnvVar(desc.env.c_str());
13031303
}
13041304

13051305
static void serialize() {

0 commit comments

Comments
 (0)