SaveState/DolphinWX: Display time and date of savestate when a slot is selected, or Empty if no savestate exists in the slot.

This commit is contained in:
Admiral H. Curtiss
2015-07-12 01:49:12 +02:00
parent df20326d45
commit 16272f4975
5 changed files with 38 additions and 3 deletions

View File

@ -1680,7 +1680,7 @@ void CFrame::OnFrameSkip(wxCommandEvent& event)
void CFrame::OnSelectSlot(wxCommandEvent& event)
{
g_saveSlot = event.GetId() - IDM_SELECT_SLOT_1 + 1;
Core::DisplayMessage(StringFromFormat("Selected slot %d", g_saveSlot), 1000);
Core::DisplayMessage(StringFromFormat("Selected slot %d - %s", g_saveSlot, State::GetInfoStringOfSlot(g_saveSlot).c_str()), 2500);
}
void CFrame::OnLoadCurrentSlot(wxCommandEvent& event)