fixed old saves have overlapping chunks with the new system

This commit is contained in:
Marvelco 2026-03-10 23:43:17 +02:00
parent c4a9a765c0
commit 3cd3d86f4e

View file

@ -11,8 +11,12 @@ bool RegionFileCache::useSplitSaves(ESavePlatform platform)
{
case SAVE_FILE_PLATFORM_XBONE:
case SAVE_FILE_PLATFORM_PS4:
case SAVE_FILE_PLATFORM_WIN64:
return true;
case SAVE_FILE_PLATFORM_WIN64:
{
LevelGenerationOptions* lgo = app.getLevelGenerationOptions();
return (lgo != nullptr && lgo->isFromDLC());
}
default:
return false;
};