gl: clear w, h on reinit
[libpicofe.git] / sndout.c
index ba34f3c..2750423 100644 (file)
--- a/sndout.c
+++ b/sndout.c
@@ -13,6 +13,7 @@
 #include <string.h>
 
 #include "linux/sndout_oss.h"
+#include "linux/sndout_alsa.h"
 #include "sndout_sdl.h"
 #include "sndout.h"
 
@@ -58,6 +59,9 @@ static struct sndout_driver sndout_avail[] =
 #ifdef HAVE_SDL
        SNDOUT_DRIVER(sdl),
 #endif
+#ifdef HAVE_ALSA
+       SNDOUT_DRIVER(alsa),
+#endif
 #ifdef HAVE_OSS
        SNDOUT_DRIVER(oss),
 #endif