mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-28 22:12:40 +02:00
htc: fix copy/paste error in usb driver
This commit is contained in:
parent
6a4247a6ed
commit
f8389f9460
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user