Add swap hands toggle functions (#20381)

This commit is contained in:
Albert Y 2023-04-10 00:37:31 +08:00 committed by GitHub
parent 5d6d959421
commit f5b7491883
Failed to generate hash of commit
3 changed files with 33 additions and 3 deletions

View file

@ -165,6 +165,18 @@ void set_swap_hands_state(size_t index, uint8_t *swap_state, bool on) {
}
}
void swap_hands_on(void) {
swap_hands = true;
}
void swap_hands_off(void) {
swap_hands = false;
}
void swap_hands_toggle(void) {
swap_hands = !swap_hands;
}
bool is_swap_hands_on(void) {
return swap_hands;
}