- deleted unused variable.

This commit is contained in:
Christoph Oelckers 2020-04-19 12:37:50 +02:00
parent 1c99e0917e
commit 14ce0f4605
2 changed files with 0 additions and 3 deletions

View file

@ -504,7 +504,6 @@ unsigned FSavegameManager::ExtractSaveData(int index)
{ {
delete SavePic; delete SavePic;
SavePic = nullptr; SavePic = nullptr;
SavePicData.Clear();
} }
} }
} }
@ -536,7 +535,6 @@ void FSavegameManager::UnloadSaveData()
SaveCommentString = ""; SaveCommentString = "";
SavePic = nullptr; SavePic = nullptr;
SavePicData.Clear();
} }
DEFINE_ACTION_FUNCTION(FSavegameManager, UnloadSaveData) DEFINE_ACTION_FUNCTION(FSavegameManager, UnloadSaveData)

View file

@ -72,7 +72,6 @@ private:
FSaveGameNode NewSaveNode; FSaveGameNode NewSaveNode;
int LastSaved = -1; int LastSaved = -1;
int LastAccessed = -1; int LastAccessed = -1;
TArray<char> SavePicData;
FTexture *SavePic = nullptr; FTexture *SavePic = nullptr;
public: public: