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 scraper log messages
This commit is contained in:
parent
d83374b38f
commit
99d2d5ec04
|
@ -593,10 +593,20 @@ void MediaDownloadHandle::update()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mMediaType == "manuals") {
|
if (mMediaType == "manuals") {
|
||||||
|
#if defined(_WIN64)
|
||||||
|
LOG(LogDebug) << "Scraper::update(): Saving game manual \""
|
||||||
|
<< Utils::String::replace(mSavePath, "/", "\\") << "\"";
|
||||||
|
#else
|
||||||
LOG(LogDebug) << "Scraper::update(): Saving game manual \"" << mSavePath << "\"";
|
LOG(LogDebug) << "Scraper::update(): Saving game manual \"" << mSavePath << "\"";
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
else if (mMediaType == "videos") {
|
else if (mMediaType == "videos") {
|
||||||
|
#if defined(_WIN64)
|
||||||
|
LOG(LogDebug) << "Scraper::update(): Saving video \""
|
||||||
|
<< Utils::String::replace(mSavePath, "/", "\\") << "\"";
|
||||||
|
#else
|
||||||
LOG(LogDebug) << "Scraper::update(): Saving video \"" << mSavePath << "\"";
|
LOG(LogDebug) << "Scraper::update(): Saving video \"" << mSavePath << "\"";
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// Resize it.
|
// Resize it.
|
||||||
|
|
Loading…
Reference in a new issue