Merge pull request #7619 from zackhow/gcadpt

Android: fix gc adapter init
This commit is contained in:
JosJuice 2018-12-23 21:18:21 +01:00 committed by GitHub
commit a0673fbb47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class Java_GCAdapter
public static void InitAdapter()
{
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()