win32: fix Cheat Search not to add the same cheat twice.

win32: RAM Search can add multi-byte cheat from now.
This commit is contained in:
gocha 2012-07-16 20:03:47 +09:00
parent 4f05725566
commit a1a3cfc986
1 changed files with 6 additions and 12 deletions

View File

@ -9613,16 +9613,7 @@ INT_PTR CALLBACK DlgCheatSearch(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lPara
}
cht.format=val_type;
//invoke dialog
if(!DialogBoxParam(g_hInst, MAKEINTRESOURCE(IDD_CHEAT_FROM_SEARCH), hDlg, DlgCheatSearchAdd, (LPARAM)&cht))
{
int p;
for(p=0; p<cht.size; p++)
{
S9xAddCheat(TRUE, cht.saved, cht.address +p, ((cht.new_val>>(8*p))&0xFF));
//add cheat
strcpy(Cheat.c[Cheat.num_cheats-1].name, cht.name);
}
}
DialogBoxParam(g_hInst, MAKEINTRESOURCE(IDD_CHEAT_FROM_SEARCH), hDlg, DlgCheatSearchAdd, (LPARAM)&cht);
}
break;
case IDC_C_RESET:
@ -10132,8 +10123,11 @@ INT_PTR CALLBACK DlgCheatSearchAdd(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lP
strncpy(new_cheat->name,_tToChar(tempBuf),22);
new_cheat->enabled=TRUE;
S9xAddCheat(new_cheat->enabled,new_cheat->saved_val,new_cheat->address,new_cheat->new_val);
strcpy(Cheat.c[Cheat.num_cheats-1].name,new_cheat->name);
for(int byteIndex = 0; byteIndex < new_cheat->size; byteIndex++)
{
S9xAddCheat(new_cheat->enabled,new_cheat->saved_val,new_cheat->address+byteIndex,(new_cheat->new_val>>(8*byteIndex))&0xFF);
strcpy(Cheat.c[Cheat.num_cheats-1].name,new_cheat->name);
}
ret=0;
}
}