mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05: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 << "\"";
|
||||
return;
|
||||
}
|
||||
#if defined(_WIN64)
|
||||
LOG(LogInfo) << "Parsing custom collection file \"" << Utils::String::replace(path, "/", "\\")
|
||||
<< "\"...";
|
||||
#else
|
||||
LOG(LogInfo) << "Parsing custom collection file \"" << path << "\"...";
|
||||
#endif
|
||||
|
||||
FileData* rootFolder {newSys->getRootFolder()};
|
||||
FileFilterIndex* index {newSys->getIndex()};
|
||||
|
|
|
@ -507,7 +507,11 @@ void MediaDownloadHandle::update()
|
|||
if (emptyImage) {
|
||||
LOG(LogWarning) << "ScreenScraper: Image does not seem to contain any data, not saving "
|
||||
"it to disk: \""
|
||||
#if defined(_WIN64)
|
||||
<< Utils::String::replace(mSavePath, "/", "\\") << "\"";
|
||||
#else
|
||||
<< mSavePath << "\"";
|
||||
#endif
|
||||
setStatus(ASYNC_DONE);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue