Skip to content
Snippets Groups Projects
Commit f4282ec4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

hotkeys: comment intended fall-throughs

parent a465a234
No related branches found
No related tags found
No related merge requests found
......@@ -902,21 +902,25 @@ static int PutAction( intf_thread_t *p_intf, input_thread_t *p_input,
{
case ACTIONID_JUMP_BACKWARD_EXTRASHORT:
sign = -1;
/* fall through */
case ACTIONID_JUMP_FORWARD_EXTRASHORT:
varname = "extrashort-jump-size";
break;
case ACTIONID_JUMP_BACKWARD_SHORT:
sign = -1;
/* fall through */
case ACTIONID_JUMP_FORWARD_SHORT:
varname = "short-jump-size";
break;
case ACTIONID_JUMP_BACKWARD_MEDIUM:
sign = -1;
/* fall through */
case ACTIONID_JUMP_FORWARD_MEDIUM:
varname = "medium-jump-size";
break;
case ACTIONID_JUMP_BACKWARD_LONG:
sign = -1;
/* fall through */
case ACTIONID_JUMP_FORWARD_LONG:
varname = "long-jump-size";
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment