mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Android: fix gc adapter init
init write not read
This commit is contained in:
@ -88,7 +88,7 @@ public class Java_GCAdapter
|
|||||||
public static void InitAdapter()
|
public static void InitAdapter()
|
||||||
{
|
{
|
||||||
byte[] init = {0x13};
|
byte[] init = {0x13};
|
||||||
usb_con.bulkTransfer(usb_in, init, init.length, 0);
|
usb_con.bulkTransfer(usb_out, init, init.length, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int Input()
|
public static int Input()
|
||||||
|
Reference in New Issue
Block a user