Commit 0c6994a9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Old RC: "rate" is a float nowadays (fix #4088)

(cherry picked from commit 68c78698a5e97cdf0c7e66960bb26d81f48eacb2)
parent 06069941
......@@ -1077,7 +1077,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
}
else if ( !strcmp( psz_cmd, "normal" ) )
{
var_SetInteger( p_input, "rate", INPUT_RATE_DEFAULT );
var_SetFloat( p_input, "rate", 1. );
i_error = VLC_SUCCESS;
}
else if ( !strcmp( psz_cmd, "frame" ) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment