changing default SDL audio driver for linux to alsa since its default in 2.6 kernel's and many users report problems if they dont specifically set it to alsa.

This commit is contained in:
Campbell Barton 2008-02-28 21:27:48 +00:00
parent 274543627a
commit a2ce30a908

@ -298,7 +298,7 @@ int main(int argc, char **argv)
signal (SIGFPE, fpe_handler);
#else
if ( getenv("SDL_AUDIODRIVER") == NULL) {
setenv("SDL_AUDIODRIVER", "dma", 1);
setenv("SDL_AUDIODRIVER", "alsa", 1);
}
#endif
#endif