diff options
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) |