From 3b37dc24bf3424021c6c1dd1fc0b15d1c502d382 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 4 Oct 2018 21:40:18 -0700 Subject: [PATCH] Fix IDsEndpoint->SetZlt() cmd_id --- nx/source/services/usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/source/services/usb.c b/nx/source/services/usb.c index f965ede9..4f2be5a7 100644 --- a/nx/source/services/usb.c +++ b/nx/source/services/usb.c @@ -1055,7 +1055,7 @@ Result usbDsEndpoint_SetZlt(UsbDsEndpoint* endpoint, bool zlt) raw = ipcPrepareHeader(&c, sizeof(*raw)); raw->magic = SFCI_MAGIC; - raw->cmd_id = 12; + raw->cmd_id = 5; raw->zlt = zlt ? 1 : 0; Result rc = serviceIpcDispatch(&endpoint->h);