mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-11-07 13:29:59 -05:00
fix: error cmp for gesturebind judge
This commit is contained in:
parent
bc4f598259
commit
144cab0c3f
1 changed files with 1 additions and 1 deletions
|
|
@ -1354,7 +1354,7 @@ if (parsed == 8) {
|
||||||
config->axis_bindings_count++;
|
config->axis_bindings_count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (strncmp(key, "gesturebind", 8) == 0) {
|
} else if (strncmp(key, "gesturebind", 11) == 0) {
|
||||||
config->gesture_bindings =
|
config->gesture_bindings =
|
||||||
realloc(config->gesture_bindings,
|
realloc(config->gesture_bindings,
|
||||||
(config->gesture_bindings_count + 1) * sizeof(GestureBinding));
|
(config->gesture_bindings_count + 1) * sizeof(GestureBinding));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue