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:
authorAlexander Ewering <blender@instinctive.de>2006-11-25 17:53:31 +0300
committerAlexander Ewering <blender@instinctive.de>2006-11-25 17:53:31 +0300
commit314b7adc17668b80bd25a94d7d17164c45224ae2 (patch)
tree3898782babdaf6ef06b55e680029ecc856a67f00 /source/blender/src/buttons_scene.c
parentcadb47b41557515870e0800fd4ccae6269dd3d3d (diff)
Uncommitted my potential fix for
http://projects.blender.org/tracker/index.php?func=detail&aid=4786&group_id=9&atid=125 It seems like you can't quote the executable path on win32 using system(). So, playing back a rendered animation now works again on win32, however, the bug remains... no idea how to correct it.
Diffstat (limited to 'source/blender/src/buttons_scene.c')
-rw-r--r--source/blender/src/buttons_scene.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/buttons_scene.c b/source/blender/src/buttons_scene.c
index 770261c8280..465cffe0505 100644
--- a/source/blender/src/buttons_scene.c
+++ b/source/blender/src/buttons_scene.c
@@ -499,7 +499,7 @@ static void run_playanim(char *file)
calc_renderwin_rectangle((G.scene->r.xsch*G.scene->r.size)/100,
(G.scene->r.ysch*G.scene->r.size)/100, G.winpos, pos, size);
- sprintf(str, "\"%s\" -a -p %d %d \"%s\"", bprogname, pos[0], pos[1], file);
+ sprintf(str, "%s -a -p %d %d \"%s\"", bprogname, pos[0], pos[1], file);
system(str);
}