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:
authorKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-04-24 10:29:51 +0400
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-04-24 10:29:51 +0400
commit3a2194a534725d9e263b6f2af11ad8b6ef8ecc67 (patch)
tree8561f9010bf0ee1794aaa40e0c9c25b7337d5194 /source/blender/readblenfile
parent8ff958e821b2d42b74c68af02ac9224fae734e86 (diff)
Remove ability to open a published executable from Blender.
Diffstat (limited to 'source/blender/readblenfile')
-rw-r--r--source/blender/readblenfile/intern/BLO_readblenfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/readblenfile/intern/BLO_readblenfile.c b/source/blender/readblenfile/intern/BLO_readblenfile.c
index 698fed79842..7fdad840895 100644
--- a/source/blender/readblenfile/intern/BLO_readblenfile.c
+++ b/source/blender/readblenfile/intern/BLO_readblenfile.c
@@ -161,7 +161,7 @@ blo_read_runtime(
*error_r= BRE_NOT_A_BLEND;
goto cleanup;
} else {
- printf("starting to read runtime from %s at datastart %d\n", path, datastart);
+ //printf("starting to read runtime from %s at datastart %d\n", path, datastart);
lseek(fd, datastart, SEEK_SET);
bfd = blo_read_blendafterruntime(fd, actualsize-datastart, error_r);
}