Skip to content

Commit

Permalink
aout: remove has-choices flag on "device", not applicable anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémi Denis-Courmont committed Jan 15, 2013
1 parent 3320071 commit bb8ba06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio_output/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit bb8ba06

Please sign in to comment.