summaryrefslogtreecommitdiff
path: root/src/3rdparty/assimp/code/XFileParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/code/XFileParser.h')
-rw-r--r--src/3rdparty/assimp/code/XFileParser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/assimp/code/XFileParser.h b/src/3rdparty/assimp/code/XFileParser.h
index 3ada49d68..6ab292787 100644
--- a/src/3rdparty/assimp/code/XFileParser.h
+++ b/src/3rdparty/assimp/code/XFileParser.h
@@ -74,7 +74,7 @@ public:
~XFileParser();
/** Returns the temporary representation of the imported data */
- const XFile::Scene* GetImportedData() const { return mScene; }
+ XFile::Scene* GetImportedData() const { return mScene; }
protected:
void ParseFile();
@@ -144,7 +144,7 @@ protected:
protected:
unsigned int mMajorVersion, mMinorVersion; ///< version numbers
bool mIsBinaryFormat; ///< true if the file is in binary, false if it's in text form
- unsigned int mBinaryFloatSize; ///< float size, either 32 or 64 bits
+ unsigned int mBinaryFloatSize; ///< float size in bytes, either 4 or 8
// counter for number arrays in binary format
unsigned int mBinaryNumCount;