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:
authorJörg Müller <nexyon@gmail.com>2021-03-17 00:32:16 +0300
committerJörg Müller <nexyon@gmail.com>2021-03-17 01:21:45 +0300
commit7b8fc307dc4ff608fc68e2decee45bae59f0c7c9 (patch)
tree9690b32b66aec4595df83e92f9595a819b715339 /source/blender/windowmanager
parent262a0988466e95ab31b834a6479b8be7ec1023d6 (diff)
Audaspace: porting minor improvements from upstream
- NullDevice is now called None - Automatic choice of best available device. - Minor formatting, documentation and cmake fixes.
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_playanim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_playanim.c b/source/blender/windowmanager/intern/wm_playanim.c
index 02a8951e60e..c95c8a6e44e 100644
--- a/source/blender/windowmanager/intern/wm_playanim.c
+++ b/source/blender/windowmanager/intern/wm_playanim.c
@@ -1619,7 +1619,7 @@ void WM_main_playanim(int argc, const char **argv)
AUD_initOnce();
- if (!(audio_device = AUD_init("OpenAL", specs, 1024, "Blender"))) {
+ if (!(audio_device = AUD_init(NULL, specs, 1024, "Blender"))) {
audio_device = AUD_init("Null", specs, 0, "Blender");
}
}