Browse Source

ObjLoader: Change double quotes.

Jonne Nauha 9 years ago
parent
commit
f855c88b1a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/js/loaders/OBJLoader.js

+ 1 - 1
examples/js/loaders/OBJLoader.js

@@ -469,7 +469,7 @@ THREE.OBJLoader.prototype = {
 			} else {
 
 				// Handle null terminated files without exception
-				if (line === "\0")
+				if (line === '\0')
 					continue;
 
 				throw new Error( "Unexpected line: '" + line  + "'");