1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-12-26 21:15:00 +00:00

forgot a bracket

This commit is contained in:
cathery 2019-11-09 11:48:53 +03:00
parent fc48561b3a
commit 1d16b46e4d

View File

@ -118,6 +118,7 @@ Result mainLoop()
WriteToLog("But the controllers table reached its max size!"); WriteToLog("But the controllers table reached its max size!");
else else
{ {
UsbHsInterface interfaces[8]; UsbHsInterface interfaces[8];
s32 total_entries; s32 total_entries;
@ -150,6 +151,7 @@ Result mainLoop()
controllerPtr = std::make_unique<XboxOneController>(std::move(devicePtr)); controllerPtr = std::make_unique<XboxOneController>(std::move(devicePtr));
} }
} }
}
rc = eventWait(&ds3Event, 0); rc = eventWait(&ds3Event, 0);
if (R_SUCCEEDED(rc)) if (R_SUCCEEDED(rc))
{ {
@ -231,4 +233,4 @@ Result mainLoop()
//controllerInterfaces.clear(); //controllerInterfaces.clear();
return rc; return rc;
} }