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:
authorDiego Borghetti <bdiego@gmail.com>2008-12-09 07:57:42 +0300
committerDiego Borghetti <bdiego@gmail.com>2008-12-09 07:57:42 +0300
commit12fbd936dda29cffd7c69b938474d10655952a18 (patch)
tree8f01e3edc1a39194895cd3234aa8938d99cf9e99
parent1adb5b5442a38b577a1827c8edd5a7fc2ea5655e (diff)
Fix mistake in last commit.. it's pic + 1 ;)
-rw-r--r--source/blender/src/playanim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/playanim.c b/source/blender/src/playanim.c
index c2040f869e6..b2851342cac 100644
--- a/source/blender/src/playanim.c
+++ b/source/blender/src/playanim.c
@@ -241,7 +241,7 @@ static void build_pict_list(char * first, int totframes, int fstep)
picture->anim = anim;
picture->frame = pic;
picture->IB_flags = IB_rect;
- sprintf(str, "%s : %d", first, pic);
+ sprintf(str, "%s : %d", first, pic + 1);
picture->name = strdup(str);
BLI_addtail(picsbase, picture);
}