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:
authorJoshua Leung <aligorith@gmail.com>2008-05-04 14:28:10 +0400
committerJoshua Leung <aligorith@gmail.com>2008-05-04 14:28:10 +0400
commitb7de3918fbd67299e2e342dc29c6333fc363d296 (patch)
tree7b5e287fa1ad4e2dac816589b6388aa03acb1d58 /source/blender/blenkernel/intern/writeffmpeg.c
parent110f927c636778fedddccb041553fc6040f4ffd8 (diff)
Fix for compiling with FFMPEG enabled due to BLI_convertstringcode
Diffstat (limited to 'source/blender/blenkernel/intern/writeffmpeg.c')
-rw-r--r--source/blender/blenkernel/intern/writeffmpeg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
index 493620a8dce..e79e36a1498 100644
--- a/source/blender/blenkernel/intern/writeffmpeg.c
+++ b/source/blender/blenkernel/intern/writeffmpeg.c
@@ -695,7 +695,8 @@ void makeffmpegstring(char* string) {
if (!string || !exts) return;
strcpy(string, G.scene->r.pic);
- BLI_convertstringcode(string, G.sce, G.scene->r.cfra);
+ BLI_convertstringcode(string, G.sce);
+ BLI_convertstringframe(string, G.scene->r.cfra);
BLI_make_existing_file(string);