From 9d7a3b10c2fa01d8f61202e58e1ab461c484ee48 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 18 Aug 2024 13:05:47 +1000 Subject: [PATCH] Settings: Fix incorrect videos directory --- src/core/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 95ddfb07b..bdf684bc2 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp @@ -1955,7 +1955,7 @@ void EmuFolders::Save(SettingsInterface& si) si.SetStringValue("Folders", "Shaders", Path::MakeRelative(Shaders, DataRoot).c_str()); si.SetStringValue("Folders", "Textures", Path::MakeRelative(Textures, DataRoot).c_str()); si.SetStringValue("Folders", "UserResources", Path::MakeRelative(UserResources, DataRoot).c_str()); - si.SetStringValue("Folders", "Videos", Path::MakeRelative(UserResources, Videos).c_str()); + si.SetStringValue("Folders", "Videos", Path::MakeRelative(Videos, DataRoot).c_str()); } void EmuFolders::Update()