Fix localid data type
This commit is contained in:
parent
604f370a1a
commit
80448624b0
@ -186,7 +186,7 @@ int GetLocalIdandDbidx(uint64_t id, uint64_t *localId, uint32_t *dbIdx)
|
||||
continue;
|
||||
}
|
||||
|
||||
*localId = strtoul((const char *)(field.content.data()), NULL, 10);
|
||||
*localId = strtoull((const char *)(field.content.data()), NULL, 10);
|
||||
*dbIdx = GET_DWORD(GET_DWORD(dbAddr + 0x18) + 0x144);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user