mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
say goodbye to your saves
This commit is contained in:
parent
9c93cc7d6f
commit
e248cbcc7d
@ -29,6 +29,7 @@
|
||||
#include "Radar.h"
|
||||
#include "Restart.h"
|
||||
#include "Script.h"
|
||||
#include "SetPieces.h"
|
||||
#include "Stats.h"
|
||||
#include "Streaming.h"
|
||||
#include "Timer.h"
|
||||
@ -206,6 +207,7 @@ GenericSave(int file)
|
||||
WriteSaveDataBlock(cAudioScriptObject::SaveAllAudioScriptObjects);
|
||||
WriteSaveDataBlock(CWorld::Players[CWorld::PlayerInFocus].SavePlayerInfo);
|
||||
WriteSaveDataBlock(CStats::SaveStats);
|
||||
WriteSaveDataBlock(CSetPieces::Save);
|
||||
WriteSaveDataBlock(CStreaming::MemoryCardSave);
|
||||
WriteSaveDataBlock(CPedType::Save);
|
||||
|
||||
@ -337,6 +339,8 @@ GenericLoad()
|
||||
LoadSaveDataBlock();
|
||||
ReadDataFromBlock("Loading Stats \n", CStats::LoadStats);
|
||||
LoadSaveDataBlock();
|
||||
ReadDataFromBlock("Loading Set Pieces \n", CSetPieces::Load);
|
||||
LoadSaveDataBlock();
|
||||
ReadDataFromBlock("Loading Streaming Stuff \n", CStreaming::MemoryCardLoad);
|
||||
LoadSaveDataBlock();
|
||||
ReadDataFromBlock("Loading PedType Stuff \n", CPedType::Load);
|
||||
|
Loading…
Reference in New Issue
Block a user