Browse Source

Update MathDefs.h

CG-SS 8 years ago
parent
commit
98a8097de6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Urho3D/Math/MathDefs.h

+ 1 - 1
Source/Urho3D/Math/MathDefs.h

@@ -276,7 +276,7 @@ inline float HalfToFloat(unsigned short value)
 inline unsigned FloatToRawIntBits(float x)
 {
     unsigned y;
-	memcpy(&y, &x, 4);
+    memcpy(&y, &x, 4);
 	
     return y;
 }