State: Remove unused Verify functions

These were unused in the entire codebase.
This commit is contained in:
Léo Lam
2018-03-16 22:54:29 +01:00
parent 917f0e2182
commit 6aa6be2804
2 changed files with 0 additions and 37 deletions

View File

@ -43,15 +43,12 @@ std::string GetInfoStringOfSlot(int slot, bool translate = true);
// Slots from 0-99.
void Save(int slot, bool wait = false);
void Load(int slot);
void Verify(int slot);
void SaveAs(const std::string& filename, bool wait = false);
void LoadAs(const std::string& filename);
void VerifyAt(const std::string& filename);
void SaveToBuffer(std::vector<u8>& buffer);
void LoadFromBuffer(std::vector<u8>& buffer);
void VerifyBuffer(std::vector<u8>& buffer);
void LoadLastSaved(int i = 1);
void SaveFirstSaved();