mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2025-07-01 23:35:47 +00:00
Fix missed merging conflicts
Fixes commit 4711129
This commit is contained in:
parent
4711129d14
commit
95104759ab
@ -57,11 +57,8 @@ struct input_device {
|
||||
struct libevdev *dev;
|
||||
bool is_keyboard;
|
||||
bool is_mouse;
|
||||
<<<<<<< HEAD
|
||||
int rotate;
|
||||
=======
|
||||
bool is_touchscreen;
|
||||
>>>>>>> tomblind/touchscreen
|
||||
int rotate;
|
||||
struct mapping* map;
|
||||
int key_map[KEY_MAX];
|
||||
int abs_map[ABS_MAX];
|
||||
@ -606,13 +603,10 @@ void evdev_create(const char* device, struct mapping* mappings, bool verbose, in
|
||||
memset(&devices[dev].abs_map, -2, sizeof(devices[dev].abs_map));
|
||||
devices[dev].is_keyboard = is_keyboard;
|
||||
devices[dev].is_mouse = is_mouse;
|
||||
<<<<<<< HEAD
|
||||
devices[dev].rotate = rotate;
|
||||
=======
|
||||
devices[dev].is_touchscreen = is_touchscreen;
|
||||
devices[dev].rotate = rotate;
|
||||
devices[dev].touchDownX = TOUCH_UP;
|
||||
devices[dev].touchDownY = TOUCH_UP;
|
||||
>>>>>>> tomblind/touchscreen
|
||||
|
||||
int nbuttons = 0;
|
||||
for (int i = BTN_JOYSTICK; i < KEY_MAX; ++i) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user