guessing it's okay to have case-insensitive hex verify here too

This commit is contained in:
unknown 2015-04-20 17:07:42 -04:00
parent ec458785ea
commit 0e05a71f2a
1 changed files with 1 additions and 1 deletions

View File

@ -1786,7 +1786,7 @@ stdstr CCheats::ReadCodeString (HWND hDlg, bool &validcodes, bool &validoptions,
if (len <= 0) { continue; }
for (i=0; i<128; i++) {
if (((str[i] >= 'A') && (str[i] <= 'F')) || ((str[i] >= '0') && (str[i] <= '9'))) { // Is hexvalue
if (is_valid_hex_digit(str[i])) {
tempformat[i] = 'X';
}
if ((str[i] == ' ') || (str[i] == '?')) {