Increase OBJ loader static working buffer size to 4096 to avoid huge lines being cropped.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@629 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/1/head
aramis_acg 2010-03-30 12:13:40 +00:00
parent 61fb6cf3f1
commit a84774cbe2
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class IOSystem;
class ObjFileParser
{
public:
static const size_t BUFFERSIZE = 1024;
static const size_t BUFFERSIZE = 4096;
typedef std::vector<char> DataArray;
typedef std::vector<char>::iterator DataArrayIt;
typedef std::vector<char>::const_iterator ConstDataArrayIt;