From 94596962a17f8989bfa20bbf98d1b5707fd773d2 Mon Sep 17 00:00:00 2001 From: SulfurNitride Date: Sat, 28 Feb 2026 11:10:31 -0600 Subject: Fix saves tab showing profile-specific saves when feature is disabled When local saves is off but the game INI still has a stale sLocalSavePath=__MO_Saves\, ignore it and fall back to the default saves directory instead of following the redirect. Co-Authored-By: Claude Opus 4.6 --- src/src/savestab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/src/savestab.cpp b/src/src/savestab.cpp index 29411fa..0ea76c1 100644 --- a/src/src/savestab.cpp +++ b/src/src/savestab.cpp @@ -265,7 +265,7 @@ QDir SavesTab::currentSavesDir() const while (savePath.endsWith('\\') || savePath.endsWith('/')) { savePath.chop(1); } - if (!savePath.isEmpty()) { + if (!savePath.isEmpty() && savePath.compare("__MO_Saves", Qt::CaseInsensitive) != 0) { savesDir.setPath(m_core.managedGame()->documentsDirectory().absoluteFilePath(savePath)); } else { savesDir = m_core.managedGame()->savesDirectory(); -- cgit v1.3.1