소스 검색

ReadFieldPtrVector should return true when successful

Burkhard Mittelbach 7 년 전
부모
커밋
afbdb043b0
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;
 }