From 0793427a2667ccbd778a2cf30179395978b54747 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Tue, 30 Aug 2011 01:08:18 +0200 Subject: [PATCH] Win32 Waveout: reorder options --- modules/audio_output/waveout.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/audio_output/waveout.c b/modules/audio_output/waveout.c index 3d10416da3..fc0b8e4c60 100644 --- a/modules/audio_output/waveout.c +++ b/modules/audio_output/waveout.c @@ -92,7 +92,6 @@ vlc_module_begin () set_capability( "audio output", 50 ) set_category( CAT_AUDIO ) set_subcategory( SUBCAT_AUDIO_AOUT ) - add_bool( "waveout-float32", true, FLOAT_TEXT, FLOAT_LONGTEXT, true ) add_string( "waveout-audio-device", "wavemapper", DEVICE_TEXT, DEVICE_LONG, false ) @@ -100,6 +99,8 @@ vlc_module_begin () change_string_list( ppsz_adev, ppsz_adev_text, ReloadWaveoutDevices ) change_action_add( ReloadWaveoutDevices, N_("Refresh list") ) + add_bool( "waveout-float32", true, FLOAT_TEXT, FLOAT_LONGTEXT, true ) + set_callbacks( Open, Close ) vlc_module_end () -- 2.39.2