Commit 55d4b390 authored by lukeph's avatar lukeph

Just trying the SVN out, fixed a bug in big endian conversion, that I’m been...

Just trying the SVN out, fixed a bug in big endian conversion, that I’m been meaning to get someone to fix

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@651 dfc29bdd-3216-0410-991c-e03cc46cb475
parent feaf2122
......@@ -786,7 +786,7 @@ bool CAnimatedMeshB3d::ReadChunkNODE(io::IReadFile* file, SB3dNode *InNode)
for (n=0; n<=2; n++)
scale[n] = os::Byteswap::byteswap(scale[n]);
for (n=0; n<=4; n++)
for (n=0; n<=3; n++)
rotation[n] = os::Byteswap::byteswap(rotation[n]);
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment