mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Fix IORead return off-by-one error in Windows real wiimote code.
This commit is contained in:
@@ -418,7 +418,7 @@ int Wiimote::IORead(u8* buf)
|
||||
}
|
||||
}
|
||||
|
||||
return bytes;
|
||||
return bytes + 1;
|
||||
}
|
||||
|
||||
int Wiimote::IOWrite(const u8* buf, int len)
|
||||
|
||||
Reference in New Issue
Block a user