From ebcafd5b86105df865187fa2c3f1878c6e7c7211 Mon Sep 17 00:00:00 2001 From: irisz64 Date: Thu, 18 Dec 2025 08:45:46 +0100 Subject: [PATCH] Save path should always be normalized --- src/frontend/Settings/GeneralSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/Settings/GeneralSettings.cpp b/src/frontend/Settings/GeneralSettings.cpp index c140c1e8..9fc83af1 100644 --- a/src/frontend/Settings/GeneralSettings.cpp +++ b/src/frontend/Settings/GeneralSettings.cpp @@ -23,7 +23,7 @@ void GeneralSettings::render() { return; } - general->savesPath = *filelist; + general->savesPath = fs::absolute(*filelist).string(); Options::GetInstance().SetValue("general", "savePath", general->savesPath); general->modified = true; }, this, window.getHandle(), nullptr, false);