Merge pull request #743 from RolandMunsil/fix-ar-code-warning

Fix "bad wxCheckListBox index" warning when trying to create AR Code
This commit is contained in:
Lioncash 2014-08-05 23:46:39 -04:00
commit 95f15ac313
1 changed files with 3 additions and 1 deletions

View File

@ -1371,9 +1371,11 @@ void CISOProperties::ActionReplayList_Save()
std::vector<std::string> lines;
std::vector<std::string> enabledLines;
u32 index = 0;
u32 cheats_chkbox_count = Cheats->GetCount();
for (const ActionReplay::ARCode& code : arCodes)
{
if (Cheats->IsChecked(index))
// Check the index against the count because of the hacky way codes are added from the "Cheat Search" dialog
if ((index < cheats_chkbox_count) && Cheats->IsChecked(index))
enabledLines.push_back("$" + code.name);
// Do not save default cheats.