Fix line continuations in OBJ files

pull/2550/head
Merwan 2019-07-16 20:37:41 +02:00
parent fed764d2a8
commit 2122dc231d
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ void ObjFileParser::parseFile( IOStreamBuffer<char> &streamBuffer ) {
size_t lastFilePos( 0 );
std::vector<char> buffer;
while ( streamBuffer.getNextDataLine( buffer, '\0' ) ) {
while ( streamBuffer.getNextDataLine( buffer, '\\' ) ) {
m_DataIt = buffer.begin();
m_DataItEnd = buffer.end();