mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Fix IORead return off-by-one error in Windows real wiimote code.
This commit is contained in:
parent
3c8477df03
commit
c32e2f33ac
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ int Wiimote::IORead(u8* buf)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return bytes;
|
return bytes + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int Wiimote::IOWrite(const u8* buf, int len)
|
int Wiimote::IOWrite(const u8* buf, int len)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue