mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
CheatSearchTab: Add UI for manually adding an address
Sometimes an address is already known, e.g. from existing cheat codes, and only inspecting the variable's value is desired.
This commit is contained in:

committed by
Léo Lam

parent
53ccd41049
commit
3c51560857
@ -42,6 +42,7 @@ private:
|
||||
bool ParseUserEnteredValue(u32* out) const;
|
||||
u32 SwapValue(u32 value) const;
|
||||
|
||||
void OnAddAddressClicked(wxCommandEvent&);
|
||||
void OnNewScanClicked(wxCommandEvent&);
|
||||
void OnNextScanClicked(wxCommandEvent&);
|
||||
void OnCreateARCodeClicked(wxCommandEvent&);
|
||||
@ -58,6 +59,9 @@ private:
|
||||
wxStaticText* m_label_results_count;
|
||||
wxTextCtrl* m_textctrl_value_x;
|
||||
|
||||
wxTextCtrl* m_textctrl_address;
|
||||
wxButton* m_btn_add_address;
|
||||
|
||||
wxButton* m_btn_create_code;
|
||||
wxButton* m_btn_init_scan;
|
||||
wxButton* m_btn_next_scan;
|
||||
|
Reference in New Issue
Block a user