Browse Source

Renaming CrtFile* -> File*.

Branimir Karadžić 8 years ago
parent
commit
018717edac
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tools/texturec/texturec.cpp

+ 2 - 2
tools/texturec/texturec.cpp

@@ -663,7 +663,7 @@ int main(int _argc, const char* _argv[])
 	}
 
 	bx::Error err;
-	bx::CrtFileReader reader;
+	bx::FileReader reader;
 	if (!bx::open(&reader, inputFileName, &err) )
 	{
 		help("Failed to open input file.", err);
@@ -695,7 +695,7 @@ int main(int _argc, const char* _argv[])
 
 	if (NULL != output)
 	{
-		bx::CrtFileWriter writer;
+		bx::FileWriter writer;
 		if (bx::open(&writer, outputFileName, false, &err) )
 		{
 			if (NULL != bx::strFindI(saveAs, "ktx") )