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:
authorBastien Montagne <montagne29@wanadoo.fr>2016-10-14 14:22:22 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-10-14 14:22:22 +0300
commit3055ae509266436e9e5e954b011b94f99c679c51 (patch)
tree245c1a9d7b5e4c847c2a3c5c760f606f9610008b /source/blender/blenkernel/intern/sound.c
parent49c2dbc5dbaefd3a2ff950dbb33e6190885d347e (diff)
Fix T49657: Audio backend "Jack" should be named "JACK".
Diffstat (limited to 'source/blender/blenkernel/intern/sound.c')
-rw-r--r--source/blender/blenkernel/intern/sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index 2f47966ec55..3132a8e27e7 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -865,7 +865,7 @@ char **BKE_sound_get_device_names(void)
audio_device_names = AUD_getDeviceNames();
#else
static const char *names[] = {
- "Null", "SDL", "OpenAL", "Jack", NULL
+ "Null", "SDL", "OpenAL", "JACK", NULL
};
audio_device_names = (char **)names;
#endif