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:
authorDalai Felinto <dfelinto@gmail.com>2015-06-10 22:23:19 +0300
committerDalai Felinto <dfelinto@gmail.com>2015-06-10 22:23:19 +0300
commit087c82e392bc4cd175421fc5bc5faa88d218c224 (patch)
tree8578fbb271f1f70362b72682812233d7bfdc8ce9 /source/blender/render
parentf167f434d91e2afcc25f8da58c265669d24f44fd (diff)
Error message fix - In the manual (thus for the user) we are referring to this as "Multi-View", not "Multiview"
Diffstat (limited to 'source/blender/render')
-rw-r--r--source/blender/render/intern/source/pipeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/render/intern/source/pipeline.c b/source/blender/render/intern/source/pipeline.c
index cac4970cd11..001120d883f 100644
--- a/source/blender/render/intern/source/pipeline.c
+++ b/source/blender/render/intern/source/pipeline.c
@@ -2958,7 +2958,7 @@ bool RE_is_rendering_allowed(Scene *scene, Object *camera_override, ReportList *
# ifdef FREESTYLR_SAVEBUFFERS_WORKAROUND
if ((scene->r.scemode & R_MULTIVIEW) != 0 && (scene->r.scemode & R_EXR_TILE_FILE) != 0) {
- BKE_report(reports, RPT_ERROR, "Multiview combined with Save Buffers not supported in Freestyle");
+ BKE_report(reports, RPT_ERROR, "Multi-View combined with Save Buffers not supported in Freestyle");
return false;
}
# endif