瀏覽代碼

Merge pull request #2174 from Wasabi375/patch-1

ReadFieldPtrVector should return true when successful
Kim Kulling 7 年之前
父節點
當前提交
65c07613ea
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      code/BlenderDNA.inl

+ 1 - 1
code/BlenderDNA.inl

@@ -405,7 +405,7 @@ bool Structure::ReadFieldPtrVector(vector<TOUT<T>>&out, const char* name, const
 	++db.stats().fields_read;
 #endif
 
-	return false;
+	return true;
 }