2
0
Эх сурвалжийг харах

Fix a compilation error in BsVectorNI.h

I guess MSVC uses black magic to parse C++.
Marc Legendre 9 жил өмнө
parent
commit
f68efb2669

+ 1 - 1
Source/BansheeUtility/Include/BsVectorNI.h

@@ -52,7 +52,7 @@ namespace BansheeEngine
 		{
 			for (UINT32 i = 0; i < N; i++)
 			{
-				if (v[i] != rhs.v[i])
+				if (v[i] != rhs[i])
 					return false;
 			}