Browse Source

Bugfix : Fixed not ANSI character in comment.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@746 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
kimmi 15 years ago
parent
commit
c38c91d28d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/ObjFileParser.cpp

+ 1 - 1
code/ObjFileParser.cpp

@@ -584,7 +584,7 @@ void ObjFileParser::getObjectName()
 			}
 		}
 
-		// Allocate a new object, if current one wast found before
+		// Allocate a new object, if current one was not found before
 		if ( NULL == m_pModel->m_pCurrent )
 			createObject(strObjectName);
 	}