riscv: Correct type warning, oops.

This commit is contained in:
Unknown W. Brackets 2023-01-04 21:42:22 -08:00
parent a937e5dce3
commit fb13dbf169

View file

@ -328,8 +328,8 @@ std::vector<std::string> DisassembleRV64(const u8 *data, int size) {
if (len == 0) {
// Force align in case we're somehow unaligned.
len = 2 - ((uintptr_t)data & 1);
invalid_count += len;
i += len;
invalid_count += (int)len;
i +=(int) len;
continue;
}