key-state: rename function for consistency

...with the equivalent function that returns the number of pressed keys.

s/key_state_nr_keys/key_state_nr_bound_keys/
This commit is contained in:
Johan Malm 2023-09-30 09:19:59 +01:00 committed by Consolatis
parent 3f0cf9c3a8
commit 2e8820cf6a
3 changed files with 3 additions and 3 deletions

View file

@ -98,7 +98,7 @@ key_state_bound_key_remove(uint32_t keycode)
}
int
key_state_nr_keys(void)
key_state_nr_bound_keys(void)
{
return bound.nr_keys;
}