Forráskód Böngészése

Fix typo in HMDOut.hx (#788)

Fix little typo in HMDOut.hx
Arnaud Duforat 5 éve
szülő
commit
5233ae312e
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      hxd/fmt/fbx/HMDOut.hx

+ 2 - 2
hxd/fmt/fbx/HMDOut.hx

@@ -113,7 +113,7 @@ class HMDOut extends BaseLibrary {
 		var ret = try Sys.command("mikktspace",[fileName,outFile]) catch( e : Dynamic ) -1;
 		if( ret != 0 ) {
 			sys.FileSystem.deleteFile(fileName);
-			throw "Failed to called 'mikktspace' executable required to generate tangent data. Please ensure it's in your PATH";
+			throw "Failed to call 'mikktspace' executable required to generate tangent data. Please ensure it's in your PATH";
 		}
 		var bytes = sys.io.File.getBytes(outFile);
 		var arr = [];
@@ -878,4 +878,4 @@ class HMDOut extends BaseLibrary {
 		return d;
 	}
 
-}
+}