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

aout: remove has-choices flag on "device", not applicable anymore

parent 3320071d
......@@ -112,7 +112,7 @@ audio_output_t *aout_New (vlc_object_t *parent)
var_AddCallback (aout, "volume", var_Copy, parent);
var_Create (aout, "mute", VLC_VAR_BOOL | VLC_VAR_DOINHERIT);
var_AddCallback (aout, "mute", var_Copy, parent);
var_Create (aout, "device", VLC_VAR_STRING | VLC_VAR_HASCHOICE);
var_Create (aout, "device", VLC_VAR_STRING);
aout->event.volume_report = aout_VolumeNotify;
aout->event.mute_report = aout_MuteNotify;
......
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