1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-14 00:48:44 +01:00

[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

View File

@ -768,6 +768,10 @@ namespace dxvk {
if (appConfig != g_appDefaults.end()) { if (appConfig != g_appDefaults.end()) {
// Inform the user that we loaded a default config // Inform the user that we loaded a default config
Logger::info(str::format("Found built-in 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; return appConfig->second;
} }