From 018717edac13ea688b6ac54f50829008858f8c23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sun, 11 Jun 2017 21:01:26 -0700 Subject: [PATCH] Renaming CrtFile* -> File*. --- tools/texturec/texturec.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/texturec/texturec.cpp b/tools/texturec/texturec.cpp index df21e1d..383c268 100644 --- a/tools/texturec/texturec.cpp +++ b/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") )