From: RĂ©mi Denis-Courmont Date: Mon, 9 Aug 2010 18:25:01 +0000 (+0300) Subject: Old RC: "rate" is a float nowadays (fix #4088) X-Git-Tag: 1.2.0-pre1~5506 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=68c78698a5e97cdf0c7e66960bb26d81f48eacb2;p=vlc Old RC: "rate" is a float nowadays (fix #4088) --- diff --git a/modules/control/rc.c b/modules/control/rc.c index 7bc032d425..dbab111df2 100644 --- a/modules/control/rc.c +++ b/modules/control/rc.c @@ -1076,7 +1076,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" ) )