From 5a4959d86c7a945df12fec23e1d48558529ea957 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Mon, 23 Oct 2017 17:19:58 -0700 Subject: [PATCH] Don't mention texture here. This is a general-purpose function now. --- src/Raw2Gltf.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Raw2Gltf.cpp b/src/Raw2Gltf.cpp index 0c65bbc..e1c63db 100644 --- a/src/Raw2Gltf.cpp +++ b/src/Raw2Gltf.cpp @@ -112,10 +112,10 @@ struct GLTFData if (file.read(fileBuffer.data(), size)) { result = AddRawBufferView(buffer, fileBuffer.data(), size); } else { - fmt::printf("Warning: Couldn't read %lu bytes from %s, skipping\n", size, filename); + fmt::printf("Warning: Couldn't read %lu bytes from %s, skipping file.\n", size, filename); } } else { - fmt::printf("Warning: Couldn't open texture file %s, skipping\n", filename); + fmt::printf("Warning: Couldn't open file %s, skipping file.\n", filename); } // note that we persist here not only success, but also failure, as nullptr filenameToBufferView[filename] = result;