Add hotkeys to select save state slots and to save/load the currently selected slots.

This commit is contained in:
Rachel Bryk
2014-09-16 17:41:16 -04:00
parent 0dd05f4a3f
commit 5dc88a2673
7 changed files with 143 additions and 1 deletions

View File

@ -331,6 +331,10 @@ private:
void StartGame(const std::string& filename);
void OnChangeColumnsVisible(wxCommandEvent& event);
void OnSelectSlot(wxCommandEvent& event);
void OnSaveCurrentSlot(wxCommandEvent& event);
void OnLoadCurrentSlot(wxCommandEvent& event);
// Event table
DECLARE_EVENT_TABLE();
};
@ -343,3 +347,4 @@ void OnStoppedCallback();
// For TASInputDlg
void TASManipFunction(GCPadStatus* PadStatus, int controllerID);
bool TASInputHasFocus();
extern int g_saveSlot;