Kevinn1109
Kevinn1109
There is no particular code related to the issue, the issue is that the usb module in Libogc does not provide any way to close the IOS handle. When no...
Thanks for the ping, for some reason I was never notified about your follow-up. The situation you're describing is indeed the expected behaviour that also should occur in homebrew, since...
Sorry for the very late reply. Your investigation does indeed show that behind the screens the same handle is used again. But the conclusion you draw from it isn't the...
```c static bool __usbstorage_Shutdown(void) { if (__vid != 0 || __pid != 0) USBStorage_Close(&__usbfd); return true; } ``` This function is called when closing an USB handle. It requires __vid...