From d8409da17485278f7d027c66781be4fc8a1f12d4 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 30 Jul 2023 18:36:38 +0200 Subject: [PATCH] (Windows) Converted forward slashes to backslashes for a ThemeData log message --- es-core/src/ThemeData.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/es-core/src/ThemeData.cpp b/es-core/src/ThemeData.cpp index dc663bf73..dbc662b95 100644 --- a/es-core/src/ThemeData.cpp +++ b/es-core/src/ThemeData.cpp @@ -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