mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 07:35:38 +00:00
(Windows) Converted forward slashes to backslashes for a ThemeData log message
This commit is contained in:
parent
ed1e11418b
commit
d8409da174
|
@ -1349,7 +1349,11 @@ ThemeData::ThemeCapability ThemeData::parseThemeCapabilities(const std::string&
|
|||
capabilities.validTheme = false;
|
||||
LOG(LogWarning)
|
||||
<< "No capabilities.xml file found, this does not appear to be a valid theme set: \""
|
||||
#if defined(_WIN64)
|
||||
<< Utils::String::replace(path, "/", "\\") << "\"";
|
||||
#else
|
||||
<< path << "\"";
|
||||
#endif
|
||||
}
|
||||
|
||||
// Add the aspect ratios in the order they are defined in sSupportedAspectRatios so they
|
||||
|
|
Loading…
Reference in a new issue