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:
authorTon Roosendaal <ton@blender.org>2010-04-14 21:15:58 +0400
committerTon Roosendaal <ton@blender.org>2010-04-14 21:15:58 +0400
commita14398c883b81cbc3fe8d62f32c9edf8a3db9eab (patch)
tree369206fa826f071864527c9b08c4e7d17144c87a /source/blender
parent22d4b020875aae010dd9da1e139aab74a5c41ab7 (diff)
Small fix: scene name in render stats string.
Diffstat (limited to 'source/blender')
-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 dfe61b29109..0b7a0119f3e 100644
--- a/source/blender/render/intern/source/pipeline.c
+++ b/source/blender/render/intern/source/pipeline.c
@@ -1564,7 +1564,7 @@ static void print_part_stats(Render *re, RenderPart *pa)
{
char str[64];
- sprintf(str, "Part %d-%d", pa->nr, re->i.totpart);
+ sprintf(str, "%s, Part %d-%d", re->scene->id.name+2, pa->nr, re->i.totpart);
re->i.infostr= str;
re->stats_draw(re->sdh, &re->i);
re->i.infostr= NULL;