linux-dist/evdev: Move *_inverted in mappings to compat section

This commit is contained in:
Jan Holthuis 2015-08-26 01:11:16 +02:00
parent 7eab958472
commit 25b8bb5f29
1 changed files with 4 additions and 4 deletions

View File

@ -186,10 +186,10 @@
load_keycode(&mf, "dreamcast", "axis_y"),
load_keycode(&mf, "dreamcast", "axis_trigger_left"),
load_keycode(&mf, "dreamcast", "axis_trigger_right"),
mf.get_bool("dreamcast", "axis_x_inverted", false),
mf.get_bool("dreamcast", "axis_y_inverted", false),
mf.get_bool("dreamcast", "axis_trigger_left_inverted", false),
mf.get_bool("dreamcast", "axis_trigger_right_inverted", false)
mf.get_bool("compat", "axis_x_inverted", false),
mf.get_bool("compat", "axis_y_inverted", false),
mf.get_bool("compat", "axis_trigger_left_inverted", false),
mf.get_bool("compat", "axis_trigger_right_inverted", false)
};
return mapping;
}