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:
authorLawrence D'Oliveiro <from-blender@geek-central.gen.nz>2014-01-25 15:27:39 +0400
committerThomas Dinges <blender@dingto.org>2014-01-25 15:29:37 +0400
commit3b32507b41b52f437321a0aa11c2714a2886f374 (patch)
tree56decb9bf1b78cd919732bac7057fd8f4e0ca965 /source/creator
parentc7ac0edb342d78d3aece53cd128288fbae584b0d (diff)
Blender docs: Correct upper limit, shown for missing -t option value.
Differential Revision: https://developer.blender.org/D248
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 d7cba36202e..be8b2a4f135 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -870,7 +870,7 @@ static int set_threads(int argc, const char **argv, void *UNUSED(data))
return 1;
}
else {
- printf("\nError: you must specify a number of threads between 0 and 8 '-t / --threads'.\n");
+ printf("\nError: you must specify a number of threads between 0 and %d '-t / --threads'.\n", BLENDER_MAX_THREADS);
return 0;
}
}