mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 08:09:19 +00:00
Android: fix gc adapter init
init write not read
This commit is contained in:
parent
2dcd058f7d
commit
5bc8b7ae7b
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue