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:
authorGaia Clary <gaia.clary@machinimatrix.org>2013-06-13 18:17:02 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-06-13 18:17:02 +0400
commite26fb9a69edbdc368b3f3ca6ed98c1ac6d4586fe (patch)
tree6af9c4e6d3f9fd338771f177a3bb39135fdfb499 /source/blender/editors/object/object_bake.c
parent93ba74c20a8a50c872b3d4492bf0f5ea9499165b (diff)
Rephrased error message for clarity
Diffstat (limited to 'source/blender/editors/object/object_bake.c')
-rw-r--r--source/blender/editors/object/object_bake.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/object/object_bake.c b/source/blender/editors/object/object_bake.c
index d02e58913e4..3f1ceb7327c 100644
--- a/source/blender/editors/object/object_bake.c
+++ b/source/blender/editors/object/object_bake.c
@@ -709,7 +709,7 @@ static void bake_freejob(void *bkv)
if (bkr->result == BAKE_RESULT_NO_OBJECTS)
BKE_report(bkr->reports, RPT_ERROR, "No objects or images found to bake to");
else if (bkr->result == BAKE_RESULT_FEEDBACK_LOOP)
- BKE_report(bkr->reports, RPT_WARNING, "Feedback loop detected");
+ BKE_report(bkr->reports, RPT_WARNING, "Circular reference in texture stack");
MEM_freeN(bkr);
G.is_rendering = FALSE;
@@ -833,7 +833,7 @@ static int bake_image_exec(bContext *C, wmOperator *op)
if (bkr.result == BAKE_RESULT_NO_OBJECTS)
BKE_report(op->reports, RPT_ERROR, "No valid images found to bake to");
else if (bkr.result == BAKE_RESULT_FEEDBACK_LOOP)
- BKE_report(op->reports, RPT_ERROR, "Feedback loop detected");
+ BKE_report(op->reports, RPT_ERROR, "Circular reference in texture stack");
finish_bake_internal(&bkr);