mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-04-21 12:05:00 +00:00
Fix mistake when renaming things
This commit is contained in:
parent
f393304a8a
commit
7a689b9474
1 changed files with 2 additions and 2 deletions
|
@ -129,8 +129,8 @@ public final class GameController {
|
|||
private static final int UI_ABS_SETUP = iow(UINPUT_IOCTL_BASE, 4, new UinputAbsSetup().size());
|
||||
|
||||
private static final int UI_DEV_SETUP = iow(UINPUT_IOCTL_BASE, 3, new UinputSetup().size());
|
||||
private static final int UI_DEV_CREATE = iow(UINPUT_IOCTL_BASE, 1, 0);
|
||||
private static final int UI_DEV_DESTROY = iow(UINPUT_IOCTL_BASE, 2, 0);
|
||||
private static final int UI_DEV_CREATE = io(UINPUT_IOCTL_BASE, 1, 0);
|
||||
private static final int UI_DEV_DESTROY = io(UINPUT_IOCTL_BASE, 2, 0);
|
||||
|
||||
private static final short EV_SYN = 0x00;
|
||||
private static final short EV_KEY = 0x01;
|
||||
|
|
Loading…
Add table
Reference in a new issue