From 4a73261ba108d9dd8fe3117efbb016f30bb487f3 Mon Sep 17 00:00:00 2001 From: janwas Date: Thu, 3 Jul 2008 20:28:22 +0000 Subject: [PATCH] fix - FMVector3::XAxis wasn't defined This was SVN commit r6189. --- source/collada/PMDConvert.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/collada/PMDConvert.cpp b/source/collada/PMDConvert.cpp index 5d2d1077b2..d4137f85fe 100644 --- a/source/collada/PMDConvert.cpp +++ b/source/collada/PMDConvert.cpp @@ -41,6 +41,12 @@ struct PropPoint uint8 bone; }; +// this isn't defined anywhere and is needed by FMVector3::Normalize. +// note that CommonConvert mentions that this and other static const +// members aren't exported from the DLL and that the preferred fix +// is to define it there; hopefully the same applies here. +/*static*/ const FMVector3 FMVector3::XAxis(1.0f, 0.0f, 0.0f); + class PMDConvert { public: