From 4464de67e19a459f39c3e705ee8a922974536f07 Mon Sep 17 00:00:00 2001 From: Vincent-FK Date: Tue, 10 Nov 2020 15:23:55 +0100 Subject: [PATCH] BUG correction: make rootfs RO only in saveRequest in CollectionInfo::Save Signed-off-by: Vincent-FK --- RetroFE/Source/Collection/CollectionInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RetroFE/Source/Collection/CollectionInfo.cpp b/RetroFE/Source/Collection/CollectionInfo.cpp index 4b615f1..94f8400 100755 --- a/RetroFE/Source/Collection/CollectionInfo.cpp +++ b/RetroFE/Source/Collection/CollectionInfo.cpp @@ -142,9 +142,9 @@ bool CollectionInfo::Save() Logger::write(Logger::ZONE_ERROR, "Collection", "Save failed: " + file); retval = false; } - } - Utils::rootfsReadOnly(); + Utils::rootfsReadOnly(); + } return retval; }