]> git.sesse.net Git - vlc/commitdiff
Win32 Waveout: reorder options
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 29 Aug 2011 23:08:18 +0000 (01:08 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 29 Aug 2011 23:35:25 +0000 (01:35 +0200)
modules/audio_output/waveout.c

index 3d10416da3e1d8f67c1d4f8c9d7a0c3634a22dd3..fc0b8e4c60425467fa1b6b281448716103a12ef9 100644 (file)
@@ -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 ()