From 58518f5e00abc669a24d477cff4b2511cd9fe055 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Sun, 29 Oct 2017 00:34:20 -0700 Subject: [PATCH] Tiny log string fix. --- src/Raw2Gltf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Raw2Gltf.cpp b/src/Raw2Gltf.cpp index d200378..5e5d383 100644 --- a/src/Raw2Gltf.cpp +++ b/src/Raw2Gltf.cpp @@ -320,7 +320,7 @@ ModelData *Raw2Gltf( const RawAnimation &animation = raw.GetAnimation(i); if (animation.channels.size() == 0) { - fmt::printf("Warning: animation '%s has zero channels. Skipping.\n", animation.name.c_str()); + fmt::printf("Warning: animation '%s' has zero channels. Skipping.\n", animation.name.c_str()); continue; }