mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-14 06:34:10 +00:00
Ignore line definitions in OBJ files
This commit is contained in:
parent
57b0b9620f
commit
4f6f65f4b8
1 changed files with 6 additions and 0 deletions
|
@ -125,6 +125,12 @@ objModel_t* OBJ_Parse( const char* fileName, const char* objFileBuffer, int leng
|
|||
idStr line;
|
||||
src.ReadRestOfLine( line );
|
||||
}
|
||||
else if( token == "l" )
|
||||
{
|
||||
// We don't support lines
|
||||
idStr line;
|
||||
src.ReadRestOfLine( line );
|
||||
}
|
||||
else if( token == "o" || token == "g" )
|
||||
{
|
||||
idStr line;
|
||||
|
|
Loading…
Reference in a new issue