Browse Source

Fixed build

Christophe Riccio 11 years ago
parent
commit
893de94bb1
1 changed files with 4 additions and 4 deletions
  1. 4 4
      glm/gtx/dual_quaternion.inl

+ 4 - 4
glm/gtx/dual_quaternion.inl

@@ -56,8 +56,8 @@ namespace glm
 	(
 	(
 		tdualquat<T, P> const & d,
 		tdualquat<T, P> const & d,
 	) :
 	) :
-		real(d.r),
-		dual(d.d)
+		real(d.real),
+		dual(d.dual)
 	{}
 	{}
 
 
 	template <typename T, precision P>
 	template <typename T, precision P>
@@ -66,8 +66,8 @@ namespace glm
 	(
 	(
 		tdualquat<T, Q> const & d,
 		tdualquat<T, Q> const & d,
 	) :
 	) :
-		real(d.r),
-		dual(d.d)
+		real(d.real),
+		dual(d.dual)
 	{}
 	{}
 
 
 	//////////////////////////////////////
 	//////////////////////////////////////