Fix IDsEndpoint->SetZlt() cmd_id

This commit is contained in:
Michael Scire 2018-10-04 21:40:18 -07:00
parent d146430265
commit 3b37dc24bf

View File

@ -1055,7 +1055,7 @@ Result usbDsEndpoint_SetZlt(UsbDsEndpoint* endpoint, bool zlt)
raw = ipcPrepareHeader(&c, sizeof(*raw)); raw = ipcPrepareHeader(&c, sizeof(*raw));
raw->magic = SFCI_MAGIC; raw->magic = SFCI_MAGIC;
raw->cmd_id = 12; raw->cmd_id = 5;
raw->zlt = zlt ? 1 : 0; raw->zlt = zlt ? 1 : 0;
Result rc = serviceIpcDispatch(&endpoint->h); Result rc = serviceIpcDispatch(&endpoint->h);