diff options
author | Brad Davis <[email protected]> | 2014-09-04 14:32:18 -0700 |
---|---|---|
committer | Brad Davis <[email protected]> | 2014-09-04 14:32:18 -0700 |
commit | 32dc394487af8e4fb1b43fb852f1d5448eaf7f31 (patch) | |
tree | be53f49e96e8e2bba1dada04197cf508b60b4eaf /LibOVR/Src/Tracking/Tracking_PoseState.h | |
parent | 85d370840fa4d49a63331a203460fe763288d417 (diff) |
Updating to windows 0.4.2
Diffstat (limited to 'LibOVR/Src/Tracking/Tracking_PoseState.h')
-rw-r--r-- | LibOVR/Src/Tracking/Tracking_PoseState.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibOVR/Src/Tracking/Tracking_PoseState.h b/LibOVR/Src/Tracking/Tracking_PoseState.h index c22395c..393d483 100644 --- a/LibOVR/Src/Tracking/Tracking_PoseState.h +++ b/LibOVR/Src/Tracking/Tracking_PoseState.h @@ -43,7 +43,7 @@ public: typedef typename CompatibleTypes<Pose<T> >::Type CompatibleType; PoseState() : TimeInSeconds(0.0) { } - PoseState(Pose<T> pose, double time) : TimeInSeconds(time), ThePose(pose) { } + PoseState(Pose<T> pose, double time) : ThePose(pose), TimeInSeconds(time) { } // float <-> double conversion constructor. explicit PoseState(const PoseState<typename Math<T>::OtherFloatType> &src) |