mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
riscv: Correct type warning, oops.
This commit is contained in:
parent
a937e5dce3
commit
fb13dbf169
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue