diff options
Diffstat (limited to 'source/Irrlicht/CXMeshFileLoader.cpp')
-rw-r--r-- | source/Irrlicht/CXMeshFileLoader.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/Irrlicht/CXMeshFileLoader.cpp b/source/Irrlicht/CXMeshFileLoader.cpp index 89c2c77..feddb40 100644 --- a/source/Irrlicht/CXMeshFileLoader.cpp +++ b/source/Irrlicht/CXMeshFileLoader.cpp @@ -912,6 +912,12 @@ bool CXMeshFileLoader::parseDataObjectMesh(SXMesh &mesh) s16 uv2type = -1;
s16 tangenttype = -1;
s16 binormaltype = -1;
+
+ (void)tangentpos; // disable unused variable warnings
+ (void)binormalpos; // disable unused variable warnings
+ (void)tangenttype; // disable unused variable warnings
+ (void)binormaltype; // disable unused variable warnings
+
for (j=0; j<dcnt; ++j)
{
const u32 type = readInt();
|