try rewriting part of the AR parser a little differently to see if it will trick vs2010 into working
This commit is contained in:
parent
7d31f5569b
commit
2e7f6bd52a
|
@ -420,11 +420,11 @@ BOOL CHEATS::XXcodePreParser(CHEATS_LIST *list, char *code)
|
||||||
count = (strlen(tmp_buf) / 16);
|
count = (strlen(tmp_buf) / 16);
|
||||||
for (int i=0; i < count; i++)
|
for (int i=0; i < count; i++)
|
||||||
{
|
{
|
||||||
char buf[8] = {0};
|
char buf[9] = {0};
|
||||||
strncpy(buf, tmp_buf+(i*16), 8);
|
memcpy(buf, tmp_buf+(i*16), 8);
|
||||||
sscanf_s(buf, "%x", &list->code[i][0]);
|
sscanf(buf, "%x", &list->code[i][0]);
|
||||||
strncpy(buf, tmp_buf+(i*16) + 8, 8);
|
memcpy(buf, tmp_buf+(i*16) + 8, 8);
|
||||||
sscanf_s(buf, "%x", &list->code[i][1]);
|
sscanf(buf, "%x", &list->code[i][1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
list->num = count;
|
list->num = count;
|
||||||
|
|
Loading…
Reference in New Issue