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 01:45:49 +0300
committerJörg Müller <nexyon@gmail.com>2021-03-17 01:45:49 +0300
commitde06cb85593baf27455509a16100d82cc5a81d92 (patch)
tree3b4e03ad9aa010d9f828fafc568dc4acd01b2277 /source/creator
parent12c08ceee3b034e360824969ea4e1aaed4be2daf (diff)
Bugfix: properly rename Null audio device to None
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator_args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator_args.c b/source/creator/creator_args.c
index 5189af3ee85..d1899cc1408 100644
--- a/source/creator/creator_args.c
+++ b/source/creator/creator_args.c
@@ -1322,7 +1322,7 @@ static int arg_handle_audio_disable(int UNUSED(argc),
const char **UNUSED(argv),
void *UNUSED(data))
{
- BKE_sound_force_device("Null");
+ BKE_sound_force_device("None");
return 0;
}