Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-02-29 00:27:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-02-29 00:27:48 +0300
commita2ce30a90845750589239dc8862d089220342893 (patch)
tree4c3650871dbb59fdf97eccb8ff973036e5c003c3 /source/creator
parent274543627a37712fb522612390116f43835abaae (diff)
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.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index ab6f9681978..d9099334afd 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -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