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 e21730c43e7c7fdb6d5d02c4b1e97888732c2ec2)
parent c84bf792
......@@ -1549,12 +1549,12 @@ static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
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;
}
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;
}
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