Commit 7726c2e3 authored by Pankaj Yadav's avatar Pankaj Yadav Committed by Rémi Denis-Courmont

All other Interfaces already moved on.Only my oldrc was left :)

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
(cherry picked from commit e21730c4)
parent c84bf792
...@@ -1549,12 +1549,12 @@ static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd, ...@@ -1549,12 +1549,12 @@ static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
if ( !strcmp(psz_cmd, "volup") ) if ( !strcmp(psz_cmd, "volup") )
{ {
if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 ) if ( aout_VolumeUp( p_intf->p_sys->p_playlist, i_nb_steps, &i_volume ) < 0 )
i_error = VLC_EGENERIC; i_error = VLC_EGENERIC;
} }
else else
{ {
if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 ) if ( aout_VolumeDown( p_intf->p_sys->p_playlist, i_nb_steps, &i_volume ) < 0 )
i_error = VLC_EGENERIC; i_error = VLC_EGENERIC;
} }
osd_Volume( p_this ); osd_Volume( p_this );
......
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