mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 18:23:52 +01:00
[util] Fix built-in config options loging
This commit is contained in:
parent
661f8b5b56
commit
27163a6a29
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user