mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Added Action Replay logging support to the AR window and possible Fill 'N' Slide fix.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1503 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -67,12 +67,17 @@ class wxCheatsWindow : public wxFrame
|
||||
|
||||
wxButton *m_Button_Close;
|
||||
wxButton *m_Button_ApplyCodes;
|
||||
wxButton *m_Button_UpdateLog;
|
||||
|
||||
wxCheckBox *m_CheckBox_LogAR;
|
||||
|
||||
wxStaticText *m_Label_Codename;
|
||||
wxStaticText *m_Label_NumCodes;
|
||||
|
||||
wxCheckListBox *m_CheckListBox_CheatsList;
|
||||
|
||||
wxTextCtrl *m_TextCtrl_Log;
|
||||
|
||||
wxListBox *m_ListBox_CodesList;
|
||||
|
||||
wxStaticBox *m_GroupBox_Info;
|
||||
@ -93,7 +98,10 @@ class wxCheatsWindow : public wxFrame
|
||||
ID_GROUPBOX_INFO,
|
||||
ID_BUTTON_APPLYCODES,
|
||||
ID_LABEL_NUMCODES,
|
||||
ID_LISTBOX_CODESLIST
|
||||
ID_LISTBOX_CODESLIST,
|
||||
ID_BUTTON_UPDATELOG,
|
||||
ID_CHECKBOX_LOGAR,
|
||||
ID_TEXTCTRL_LOG
|
||||
};
|
||||
|
||||
void Init_ChildControls();
|
||||
@ -114,6 +122,12 @@ class wxCheatsWindow : public wxFrame
|
||||
|
||||
// $ Update Active Codes Button
|
||||
void OnEvent_ButtonUpdateCodes_Press(wxCommandEvent& event);
|
||||
|
||||
// $ Update Log Button
|
||||
void OnEvent_ButtonUpdateLog_Press(wxCommandEvent& event);
|
||||
|
||||
// $ Enable Logging Checkbox
|
||||
void OnEvent_CheckBoxEnableLogging_StateChange(wxCommandEvent& event);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user