Qt: Show save times in save state menu as well

This commit is contained in:
Connor McLaughlin
2020-03-12 13:51:23 +10:00
parent b2d0dd2d6c
commit e8a5259e68
3 changed files with 46 additions and 40 deletions

View File

@ -161,6 +161,9 @@ protected:
/// Returns a list of save states for the specified game code.
std::vector<SaveStateInfo> GetAvailableSaveStates(const char* game_code) const;
/// Returns save state info if present. If game_code is null or empty, assumes global state.
std::optional<SaveStateInfo> GetSaveStateInfo(const char* game_code, s32 slot);
/// Returns the most recent resume save state.
std::string GetMostRecentResumeSaveStatePath() const;