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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-04-07 14:25:43 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-04-07 14:25:43 +0400
commite81c198e9af75b27d95e9788cb3c70a62812fbb1 (patch)
treee089ed7d53866af2f6a075d73a08835dbc0c810d
parentc66b0a32ca3d2c3f1c8800eeafab09a8319d502e (diff)
Disable part of commit #28064, this also clears the path on any file giving
problems with file saving, proper fix will come later.
-rw-r--r--source/blender/blenkernel/intern/blender.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/blender.c b/source/blender/blenkernel/intern/blender.c
index 48fe93af418..fd6db3710b9 100644
--- a/source/blender/blenkernel/intern/blender.c
+++ b/source/blender/blenkernel/intern/blender.c
@@ -291,10 +291,13 @@ static void setup_app_data(bContext *C, BlendFileData *bfd, char *filename)
/* in case of autosave or quit.blend, use original filename instead
* use relbase_valid to make sure the file is saved, else we get <memory2> in the filename */
filename= bfd->filename;
- } else if (!G.relbase_valid) {
+ }
+#if 0
+ else if (!G.relbase_valid) {
/* otherwise, use an empty string as filename, rather than <memory2> */
filename="";
}
+#endif
/* these are the same at times, should never copy to the same location */
if(G.sce != filename)