[Bf-blender-cvs] [9a2680a626f] universal-scene-description: USD import: fixed typo in debug message.

Michael Kowalski noreply at git.blender.org
Fri Aug 12 02:15:30 CEST 2022


Commit: 9a2680a626f3ec08f10fe9eb927da69a9c181e92
Author: Michael Kowalski
Date:   Thu Aug 11 20:06:28 2022 -0400
Branches: universal-scene-description
https://developer.blender.org/rB9a2680a626f3ec08f10fe9eb927da69a9c181e92

USD import: fixed typo in debug message.

This was also causing mac and linux compile errors.

===================================================================

M	source/blender/io/usd/intern/usd_skel_convert.cc

===================================================================

diff --git a/source/blender/io/usd/intern/usd_skel_convert.cc b/source/blender/io/usd/intern/usd_skel_convert.cc
index 8256f86bbdb..9d3ed2b4d83 100644
--- a/source/blender/io/usd/intern/usd_skel_convert.cc
+++ b/source/blender/io/usd/intern/usd_skel_convert.cc
@@ -324,7 +324,7 @@ void import_blendshapes(Main *bmain, Object *obj, pxr::UsdPrim prim)
     }
 
     if (weights.size() != curves.size()) {
-      std::cout << "Programmer error: number of weight samples doesn't match number of shapekey curve entries for time " << time << std::endl;
+      std::cout << "Programmer error: number of weight samples doesn't match number of shapekey curve entries for frame " << frame << std::endl;
       continue;
     }



More information about the Bf-blender-cvs mailing list