Commit e21730c4 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>
parent a5dc11a8
......@@ -1555,12 +1555,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