From 79a18c07accf5a0e81466e5118fbc91fa48df4c2 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Fri, 21 Jul 2023 12:00:22 +0200 Subject: [PATCH] Changed how pending gamelist writes are handled when rescanning the ROM directory --- es-app/src/guis/GuiMenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index d5f81568a..098b0b1c3 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -1752,7 +1752,7 @@ void GuiMenu::openUtilities() window->stopInfoPopup(); GuiMenu::close(true); // Write any gamelist.xml changes before proceeding with the reload. - if (Settings::getInstance()->getString("SaveGamelistsMode") != "never") { + if (Settings::getInstance()->getString("SaveGamelistsMode") == "on exit") { for (auto system : SystemData::sSystemVector) system->writeMetaData(); }