Better error reporting when dying because of too many nodex, normals, or
texture coords.
This commit is contained in:
parent
1cbe332e1c
commit
447cc39f7b
1 changed files with 6 additions and 3 deletions
|
@ -282,7 +282,8 @@ int fgObjLoad( const string& path, fgTILE *t) {
|
|||
vncount++;
|
||||
} else {
|
||||
FG_LOG( FG_TERRAIN, FG_ALERT,
|
||||
"Read too many vertex normals ... dying :-(" );
|
||||
"Read too many vertex normals in " << path
|
||||
<< " ... dying :-(" );
|
||||
exit(-1);
|
||||
}
|
||||
} else if ( token == "vt" ) {
|
||||
|
@ -293,7 +294,8 @@ int fgObjLoad( const string& path, fgTILE *t) {
|
|||
vtcount++;
|
||||
} else {
|
||||
FG_LOG( FG_TERRAIN, FG_ALERT,
|
||||
"Read too many vertex texture coords ... dying :-("
|
||||
"Read too many vertex texture coords in " << path
|
||||
<< " ... dying :-("
|
||||
);
|
||||
exit(-1);
|
||||
}
|
||||
|
@ -306,7 +308,8 @@ int fgObjLoad( const string& path, fgTILE *t) {
|
|||
t->ncount++;
|
||||
} else {
|
||||
FG_LOG( FG_TERRAIN, FG_ALERT,
|
||||
"Read too many nodes ... dying :-(");
|
||||
"Read too many nodes in " << path
|
||||
<< " ... dying :-(");
|
||||
exit(-1);
|
||||
}
|
||||
} else if ( token == "t" ) {
|
||||
|
|
Loading…
Reference in a new issue