Merge pull request #127 from lioncash/cheat-dlg-simplification

Make the base calculation in CheatsWindow simpler.
This commit is contained in:
Pierre Bourdon 2014-03-03 04:16:43 +01:00
commit 32e0544088
1 changed files with 2 additions and 1 deletions

View File

@ -647,7 +647,8 @@ void CreateCodeDialog::PressOK(wxCommandEvent& ev)
}
long code_value;
if (!textctrl_value->GetValue().ToLong(&code_value, 10 + checkbox_use_hex->GetValue()*6))
int base = checkbox_use_hex->IsChecked() ? 16 : 10;
if (!textctrl_value->GetValue().ToLong(&code_value, base))
{
PanicAlertT("Invalid Value!");
return;