Bug fix for problem 2 in [#25973] Bake End Frame Not Configurable

* External caches didn't load for smoke straight away. Smoke caches store all necessary info in every file, so no need to try to look for an info file.
This commit is contained in:
Janne Karhu
2011-02-11 14:59:19 +00:00
parent c50bf404d2
commit dcf7642f76

View File

@@ -2929,8 +2929,10 @@ void BKE_ptcache_load_external(PTCacheID *pid)
cache->endframe = end;
cache->totpoint = 0;
if(pid->type == PTCACHE_TYPE_SMOKE_DOMAIN)
; /*necessary info in every file*/
/* read totpoint from info file (frame 0) */
if(info) {
else if(info) {
pf= ptcache_file_open(pid, PTCACHE_FILE_READ, 0);
if(pf) {