Skip to content

Commit

Permalink
Typos, fixes Linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Glatzel committed May 21, 2017
1 parent ee2ff9d commit 3954375
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions IntrinsicCore/src/IntrinsicCoreComponentsNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ struct NodeManager

///
_INTR_INLINE static void
updateFromWorldOrientation(NodeRef p_Ref, glm::quat& p_WorldOrientation)
updateFromWorldOrientation(NodeRef p_Ref, const glm::quat& p_WorldOrientation)
{
Components::NodeRef parentNode = _parent(p_Ref);
if (parentNode.isValid())
Expand All @@ -456,8 +456,8 @@ struct NodeManager
}

///
_INTR_INLINE static void updateFromWorldPosition(NodeRef p_Ref,
glm::vec3& p_WorldPosition)
_INTR_INLINE static void
updateFromWorldPosition(NodeRef p_Ref, const glm::vec3& p_WorldPosition)
{
Components::NodeRef parentNode = _parent(p_Ref);
if (parentNode.isValid())
Expand Down

0 comments on commit 3954375

Please sign in to comment.