hotkeys: the jump value is not an vlc_tick_t but a number of seconds

This commit is contained in:
Steve Lhomme 2018-05-31 14:37:39 +02:00
parent df07e434dd
commit 020df32e5b
1 changed files with 1 additions and 1 deletions

View File

@ -978,7 +978,7 @@ static int PutAction( intf_thread_t *p_intf, input_thread_t *p_input,
break;
}
vlc_tick_t it = var_InheritInteger( p_input, varname );
int it = var_InheritInteger( p_input, varname );
if( it < 0 )
break;
var_SetInteger( p_input, "time-offset", vlc_tick_from_sec( it * sign ) );