# IrrLoader: fix typo.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1130 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/5/head
aramis_acg 2012-02-02 02:06:31 +00:00
parent ea3f655c57
commit b54d3ff522
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ void IRRImporter::ComputeAnimations(Node* root, aiNode* real, std::vector<aiNode
t2 = (h1 * p1 + p2 * h2 + t1 * h3 + h4 * t2); t2 = (h1 * p1 + p2 * h2 + t1 * h3 + h4 * t2);
// build a simple translation matrix from it // build a simple translation matrix from it
key.mValue = t2.x; key.mValue = t2;
key.mTime = (double) i; key.mTime = (double) i;
} }
} }