ExtSaveData: Fix CreateFile

This commit is contained in:
wheremyfoodat 2025-02-10 02:01:09 +02:00
parent 701fd0f446
commit f4c32bfdc9

View file

@ -15,7 +15,7 @@ HorizonResult ExtSaveDataArchive::createFile(const FSPath& path, u64 size) {
Helpers::panic("Unsafe path in ExtSaveData::OpenFile");
}
fs::path p = IOFile::getAppData() / backingFolder;
fs::path p = getUserDataPath();
appendPath(p, path);
if (fs::exists(p))