浏览代码

Fixed CheckStaticAccess

Brian Fiete 5 年之前
父节点
当前提交
90f59b4f5d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      IDEHelper/Compiler/BfModule.cpp

+ 1 - 1
IDEHelper/Compiler/BfModule.cpp

@@ -6038,7 +6038,7 @@ BfIRValue BfModule::FixClassVData(BfIRValue value)
 void BfModule::CheckStaticAccess(BfTypeInstance* typeInstance)
 {	
 	// Note: this is not just for perf, it fixes a field var-type resolution issue
-	if (!mBfIRBuilder->mIgnoreWrites)
+	if (mBfIRBuilder->mIgnoreWrites)
 		return;
 
 	PopulateType(typeInstance, BfPopulateType_DataAndMethods);