summaryrefslogtreecommitdiffstats
path: root/src/save
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2021-01-20 19:12:42 +0100
committerNikolay Korolev <nickvnuk@gmail.com>2021-01-20 19:12:42 +0100
commitad745aae63b0c5e3d918fbadcee54d269240b5a3 (patch)
treecd3f15aed49a450dcd037ade408f09bb902e794b /src/save
parentMerge branch 'lcs-dev' into lcs (diff)
downloadre3-ad745aae63b0c5e3d918fbadcee54d269240b5a3.tar
re3-ad745aae63b0c5e3d918fbadcee54d269240b5a3.tar.gz
re3-ad745aae63b0c5e3d918fbadcee54d269240b5a3.tar.bz2
re3-ad745aae63b0c5e3d918fbadcee54d269240b5a3.tar.lz
re3-ad745aae63b0c5e3d918fbadcee54d269240b5a3.tar.xz
re3-ad745aae63b0c5e3d918fbadcee54d269240b5a3.tar.zst
re3-ad745aae63b0c5e3d918fbadcee54d269240b5a3.zip
Diffstat (limited to 'src/save')
-rw-r--r--src/save/GenericGameStorage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/save/GenericGameStorage.cpp b/src/save/GenericGameStorage.cpp
index 13f15b8a..17691048 100644
--- a/src/save/GenericGameStorage.cpp
+++ b/src/save/GenericGameStorage.cpp
@@ -230,7 +230,7 @@ GenericSave(int file)
totalSize = buf - work_buff;
// Save the rest
- WriteSaveDataBlock(CPools::SavePedPool, "PedPoolSize");
+ //WriteSaveDataBlock(CPools::SavePedPool, "PedPoolSize");
WriteSaveDataBlock(CGarages::Save, "GaragesSize");
WriteSaveDataBlock(CGameLogic::Save, "GameLogicSize");
WriteSaveDataBlock(CPools::SaveVehiclePool, "VehPoolSize");
@@ -356,8 +356,8 @@ GenericLoad()
ReadDataFromBlock("Loading Scripts \n", CTheScripts::LoadAllScripts);
// Load the rest
- LoadSaveDataBlock();
- ReadDataFromBlock("Loading PedPool \n", CPools::LoadPedPool);
+ //LoadSaveDataBlock();
+ //ReadDataFromBlock("Loading PedPool \n", CPools::LoadPedPool);
LoadSaveDataBlock();
ReadDataFromBlock("Loading Garages \n", CGarages::Load);
LoadSaveDataBlock();