summaryrefslogtreecommitdiff
path: root/sway/input_state.c
diff options
context:
space:
mode:
authortaiyu <[email protected]>2015-08-20 05:06:22 -0700
committertaiyu <[email protected]>2015-08-20 05:06:22 -0700
commitf5fde7c45c04b02406eabc34cbb4248189c6a26e (patch)
tree120cbb51e8e16346743b9408e17452ab5e81d0e2 /sway/input_state.c
parentf6e002fb8b664d80ef10126f6a204ffbb2f192df (diff)
style
Diffstat (limited to 'sway/input_state.c')
-rw-r--r--sway/input_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input_state.c b/sway/input_state.c
index 51213b19..a7f88d4a 100644
--- a/sway/input_state.c
+++ b/sway/input_state.c
@@ -36,7 +36,7 @@ void press_key(keycode key) {
void release_key(keycode key) {
uint8_t index = find_key(key);
if (index < KEY_STATE_MAX_LENGTH) {
- //shift it over and remove key
+ // shift it over and remove key
key_state_array[index] = 0;
}
}