mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
(Windows) Converted forward slashes to backslashes for two log messages.
This commit is contained in:
parent
11faacb43a
commit
6a67df894f
|
@ -1236,7 +1236,12 @@ void CollectionSystemsManager::populateCustomCollection(CollectionSystemData* sy
|
||||||
LOG(LogInfo) << "Couldn't find custom collection config file \"" << path << "\"";
|
LOG(LogInfo) << "Couldn't find custom collection config file \"" << path << "\"";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#if defined(_WIN64)
|
||||||
|
LOG(LogInfo) << "Parsing custom collection file \"" << Utils::String::replace(path, "/", "\\")
|
||||||
|
<< "\"...";
|
||||||
|
#else
|
||||||
LOG(LogInfo) << "Parsing custom collection file \"" << path << "\"...";
|
LOG(LogInfo) << "Parsing custom collection file \"" << path << "\"...";
|
||||||
|
#endif
|
||||||
|
|
||||||
FileData* rootFolder {newSys->getRootFolder()};
|
FileData* rootFolder {newSys->getRootFolder()};
|
||||||
FileFilterIndex* index {newSys->getIndex()};
|
FileFilterIndex* index {newSys->getIndex()};
|
||||||
|
|
|
@ -507,7 +507,11 @@ void MediaDownloadHandle::update()
|
||||||
if (emptyImage) {
|
if (emptyImage) {
|
||||||
LOG(LogWarning) << "ScreenScraper: Image does not seem to contain any data, not saving "
|
LOG(LogWarning) << "ScreenScraper: Image does not seem to contain any data, not saving "
|
||||||
"it to disk: \""
|
"it to disk: \""
|
||||||
|
#if defined(_WIN64)
|
||||||
|
<< Utils::String::replace(mSavePath, "/", "\\") << "\"";
|
||||||
|
#else
|
||||||
<< mSavePath << "\"";
|
<< mSavePath << "\"";
|
||||||
|
#endif
|
||||||
setStatus(ASYNC_DONE);
|
setStatus(ASYNC_DONE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue