[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [13908] trunk/blender/source/creator/ creator.c: 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.

Campbell Barton ideasman42 at gmail.com
Thu Feb 28 22:27:48 CET 2008


Revision: 13908
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=13908
Author:   campbellbarton
Date:     2008-02-28 22:27:48 +0100 (Thu, 28 Feb 2008)

Log Message:
-----------
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.

Modified Paths:
--------------
    trunk/blender/source/creator/creator.c

Modified: trunk/blender/source/creator/creator.c
===================================================================
--- trunk/blender/source/creator/creator.c	2008-02-28 20:26:00 UTC (rev 13907)
+++ trunk/blender/source/creator/creator.c	2008-02-28 21:27:48 UTC (rev 13908)
@@ -298,7 +298,7 @@
 	signal (SIGFPE, fpe_handler);
     #else
 	if ( getenv("SDL_AUDIODRIVER") == NULL) {
-		setenv("SDL_AUDIODRIVER", "dma", 1);
+		setenv("SDL_AUDIODRIVER", "alsa", 1);
 	}
     #endif
 #endif





More information about the Bf-blender-cvs mailing list