From 5580dcfa92c1f25f5704ba2e552da03c7be6ad05 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Mon, 23 Oct 2017 18:59:32 -0700 Subject: [PATCH] Whitespace tweaks in log output. --- src/Fbx2Raw.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Fbx2Raw.cpp b/src/Fbx2Raw.cpp index 761ab07..4f736f3 100644 --- a/src/Fbx2Raw.cpp +++ b/src/Fbx2Raw.cpp @@ -797,16 +797,16 @@ static void ReadNodeHierarchy( if (lInheritType == FbxTransform::eInheritRSrs) { if (++warnRSrsCount == 1) { fmt::printf("Warning: node %s uses unsupported transform inheritance type 'eInheritRSrs'.\n", newPath); - fmt::printf("Further warnings of this type squelched.\n"); + fmt::printf(" (Further warnings of this type squelched.)\n"); } } else if (lInheritType == FbxTransform::eInheritRrs) { if (++warnRrsCount == 1) { fmt::printf( "Warning: node %s uses unsupported transform inheritance type 'eInheritRrs'\n" - "This tool will attempt to partially compensate, but glTF cannot truly express this mode.\n" - "If this was a Maya export, consider turning off 'Segment Scale Compensate' on all joints.\n" - "Further warnings of this type squelched.\n", + " This tool will attempt to partially compensate, but glTF cannot truly express this mode.\n" + " If this was a Maya export, consider turning off 'Segment Scale Compensate' on all joints.\n" + " (Further warnings of this type squelched.)\n", newPath); } }