[util] Use `;` as option separator for DXVK_CONFIG env var

This commit is contained in:
pchome 2023-07-31 21:56:55 +03:00 committed by GitHub
parent e4bbae25c2
commit 48b3f46e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1122,7 +1122,7 @@ namespace dxvk {
// help when debugging configuration issues
Logger::info(str::format("Found config env: ", confLine));
for(auto l : str::split(confLine, "#"))
for(auto l : str::split(confLine, ";"))
parseUserConfigLine(config, ctx, std::string(l.data(), l.size()));
}