From 893de94bb1a50aa28bed78af783071df3ca11852 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 12 Oct 2014 02:51:34 +0200 Subject: [PATCH] Fixed build --- glm/gtx/dual_quaternion.inl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glm/gtx/dual_quaternion.inl b/glm/gtx/dual_quaternion.inl index 0993269a..9cc77811 100644 --- a/glm/gtx/dual_quaternion.inl +++ b/glm/gtx/dual_quaternion.inl @@ -56,8 +56,8 @@ namespace glm ( tdualquat const & d, ) : - real(d.r), - dual(d.d) + real(d.real), + dual(d.dual) {} template @@ -66,8 +66,8 @@ namespace glm ( tdualquat const & d, ) : - real(d.r), - dual(d.d) + real(d.real), + dual(d.dual) {} //////////////////////////////////////