From c72cf85acfc1103061f38c5e72ef437c05c0d0eb Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Sun, 25 Feb 2018 19:40:22 -0800 Subject: [PATCH] Small oops left over from glTF 1.0. --- src/Raw2Gltf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Raw2Gltf.cpp b/src/Raw2Gltf.cpp index 1852756..919803e 100644 --- a/src/Raw2Gltf.cpp +++ b/src/Raw2Gltf.cpp @@ -996,7 +996,7 @@ ModelData *Raw2Gltf( auto iter = nodesById.find(cam.nodeId); if (iter == nodesById.end()) { - fmt::printf("Warning: Camera node id %s does not exist.\n", cam.nodeId); + fmt::printf("Warning: Camera node id %lu does not exist.\n", cam.nodeId); continue; } iter->second->SetCamera(camera.ix);