mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-06-02 01:31:45 +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;
|
idStr line;
|
||||||
src.ReadRestOfLine( line );
|
src.ReadRestOfLine( line );
|
||||||
}
|
}
|
||||||
|
else if( token == "l" )
|
||||||
|
{
|
||||||
|
// We don't support lines
|
||||||
|
idStr line;
|
||||||
|
src.ReadRestOfLine( line );
|
||||||
|
}
|
||||||
else if( token == "o" || token == "g" )
|
else if( token == "o" || token == "g" )
|
||||||
{
|
{
|
||||||
idStr line;
|
idStr line;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue