Settings: Fix incorrect videos directory

This commit is contained in:
Stenzek 2024-08-18 13:05:47 +10:00
parent 7ac3e2fe50
commit 9d7a3b10c2
No known key found for this signature in database

View file

@ -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()