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/editimasel.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/editimasel.c')
-rw-r--r--source/blender/src/editimasel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editimasel.c b/source/blender/src/editimasel.c
index 70572673d43..3d2b3c8b715 100644
--- a/source/blender/src/editimasel.c
+++ b/source/blender/src/editimasel.c
@@ -341,7 +341,7 @@ void winqreadimaselspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
if(G.qual & LR_SHIFTKEY) {
extern char bprogname[]; /* usiblender.c */
- sprintf(name, "\"%s\" -a \"%s%s\"", bprogname, simasel->dir, simasel->file);
+ sprintf(name, "%s -a \"%s%s\"", bprogname, simasel->dir, simasel->file);
system(name);
}
if(G.qual & LR_CTRLKEY) {