You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i connect the charging-grip via usb (to charge my joycons while using them) the programm crashes on startup when the joycons are connected via bluetooth.
Replacing the offending break with a continue does prevent the crash, but now the console spams the message "closing uinput 9 10 false".
Replacing the whole case-block for jcpc.JOYCON_PRODUCT_CHARGEGRIP with a continue does also get rid of the crash AND the message-spamming.
I am wondering why there is a block for the charging-grip? Is it more then just a charger? And what is the code in the case-block even supposed to do? Is it safe to remove it?
The text was updated successfully, but these errors were encountered:
When i connect the charging-grip via usb (to charge my joycons while using them) the programm crashes on startup when the joycons are connected via bluetooth.
The reason seems to that this break:
joycon/prog4/consoleiface/Manager.go
Line 433 in 144b22d
cancels the for-loop without setting jc to a value.
And the line:
joycon/prog4/consoleiface/Manager.go
Line 448 in 144b22d
will then use jc (which is nil) and crashes.
Replacing the offending break with a continue does prevent the crash, but now the console spams the message "closing uinput 9 10 false".
Replacing the whole case-block for jcpc.JOYCON_PRODUCT_CHARGEGRIP with a continue does also get rid of the crash AND the message-spamming.
I am wondering why there is a block for the charging-grip? Is it more then just a charger? And what is the code in the case-block even supposed to do? Is it safe to remove it?
The text was updated successfully, but these errors were encountered: