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/blenloader/intern
parent8ff958e821b2d42b74c68af02ac9224fae734e86 (diff)
Remove ability to open a published executable from Blender.
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/readblenentry.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/blenloader/intern/readblenentry.c b/source/blender/blenloader/intern/readblenentry.c
index bf4a634e8ed..a008142be66 100644
--- a/source/blender/blenloader/intern/readblenentry.c
+++ b/source/blender/blenloader/intern/readblenentry.c
@@ -251,12 +251,6 @@ BlendFileData *BLO_read_from_file(char *file, BlendReadError *error_r) {
strcpy(bfd->main->name, file);
}
blo_freefiledata(fd);
- } else if (blo_is_a_runtime(file)) {
- bfd= blo_read_runtime(file, error_r);
- if (bfd) {
- bfd->type= BLENFILETYPE_RUNTIME;
- strcpy(bfd->main->name, file);
- }
}
return bfd;