Missing value_or() when printing std::optional

This commit is contained in:
Muhammad Rifqi Priyo Susanto 2024-02-23 11:00:00 +07:00 committed by sfan5
parent 270b2bec6e
commit 2db8c8728e
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ bool CB3DMeshFileLoader::readChunkNODE(CSkinnedMesh::SJoint *inJoint)
for ( u32 i=1; i < B3dStack.size(); ++i )
logStr += "-";
logStr += "read ChunkNODE";
os::Printer::log(logStr.c_str(), joint->Name.c_str(), ELL_DEBUG);
os::Printer::log(logStr.c_str(), joint->Name.value_or("").c_str(), ELL_DEBUG);
#endif
f32 position[3], scale[3], rotation[4];