Fix mistake in last commit.. it's pic + 1 ;)

This commit is contained in:
Diego Borghetti 2008-12-09 04:57:42 +00:00
parent 1adb5b5442
commit 12fbd936dd

@ -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);
}