[util] Fix built-in config options loging

This commit is contained in:
pchome 2022-06-21 22:19:05 +03:00 committed by Philip Rebohle
parent 661f8b5b56
commit 27163a6a29
1 changed files with 4 additions and 0 deletions

View File

@ -768,6 +768,10 @@ namespace dxvk {
if (appConfig != g_appDefaults.end()) {
// Inform the user that we loaded a default config
Logger::info(str::format("Found built-in config:"));
for (auto& pair : appConfig->second.m_options)
Logger::info(str::format(" ", pair.first, " = ", pair.second));
return appConfig->second;
}