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 a file deletion log message
This commit is contained in:
parent
f35b411911
commit
e9cd5dfd84
|
@ -479,7 +479,12 @@ void GuiGamelistOptions::openMetaDataEd()
|
|||
};
|
||||
|
||||
deleteGameBtnFunc = [this, file] {
|
||||
#if defined(_WIN64)
|
||||
LOG(LogInfo) << "Deleting game file \""
|
||||
<< Utils::String::replace(file->getFullPath(), "/", "\\")
|
||||
#else
|
||||
LOG(LogInfo) << "Deleting game file \"" << file->getFullPath()
|
||||
#endif
|
||||
<< "\", all its media files and its gamelist.xml entry";
|
||||
CollectionSystemsManager::getInstance()->deleteCollectionFiles(file);
|
||||
ViewController::getInstance()->getGamelistView(file->getSystem()).get()->removeMedia(file);
|
||||
|
|
Loading…
Reference in a new issue