Added a "Cheat Search" tab to the "Tools->Action Replay Manager" dialog.(issue 8) You can currently search for values in memory and create AR codes from a found address/value. The code where a new ARCode is created/added to the gameini is a bit hacky, but the cheat searching works decently. There currently isn't any way to remove ARCodes or create codes with multiple commands, other than stopping the game and opening the game properties.(needs improvement) Made the AR Manager dialog a bit less ugly as well.(it resizes better)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5898 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Jordan Woyak
2010-07-18 04:13:16 +00:00
parent 60e3a17d0d
commit 8208903fed
4 changed files with 551 additions and 116 deletions

View File

@ -51,6 +51,9 @@ class CISOProperties : public wxDialog
bool bRefreshList;
void ActionReplayList_Load();
bool SaveGameConfig();
private:
DECLARE_EVENT_TABLE();
@ -249,10 +252,8 @@ class CISOProperties : public wxDialog
std::string GameIniFile;
void LoadGameConfig();
bool SaveGameConfig();
void PatchList_Load();
void PatchList_Save();
void ActionReplayList_Load();
void ActionReplayList_Save();
void ChangeBannerDetails(int lang);
};