mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 15:15:37 +00:00
(Windows) Fixed a compiler error
This commit is contained in:
parent
e8db2a196f
commit
7cef859a77
|
@ -1159,7 +1159,7 @@ bool GuiThemeDownloader::input(InputConfig* config, Input input)
|
|||
const std::filesystem::path themeDirectory {
|
||||
mThemeDirectory + mThemeSets[mList->getCursorId()].reponame};
|
||||
LOG(LogInfo) << "Deleting theme directory \"" << themeDirectory.string() << "\"";
|
||||
if (!Utils::FileSystem::removeDirectory(themeDirectory, true)) {
|
||||
if (!Utils::FileSystem::removeDirectory(themeDirectory.string(), true)) {
|
||||
mWindow->pushGui(new GuiMsgBox(
|
||||
getHelpStyle(), "COULDN'T DELETE THEME, PERMISSION PROBLEMS?", "OK",
|
||||
[] { return; }, "", nullptr, "", nullptr, true));
|
||||
|
|
Loading…
Reference in a new issue