htc: fix copy/paste error in usb driver

This commit is contained in:
Michael Scire 2021-02-08 12:26:00 -08:00 committed by SciresM
parent e40eece74e
commit 8f85cc17dc

View file

@ -102,7 +102,7 @@ namespace ams::htclow::driver {
/* Send until we've sent everything. */
for (auto transferred = 0; transferred < dst_size; /* ... */) {
int cur;
R_TRY(SendUsb(std::addressof(cur), reinterpret_cast<void *>(reinterpret_cast<uintptr_t>(dst) + transferred), dst_size - transferred));
R_TRY(ReceiveUsb(std::addressof(cur), reinterpret_cast<void *>(reinterpret_cast<uintptr_t>(dst) + transferred), dst_size - transferred));
transferred += cur;
}