From fe9b6d73a86a8af864542bdf500b945952f6cccc Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 4 Oct 2023 16:54:50 +0200 Subject: [PATCH] Fix build regression from b3b6251c107ee210ef7cfa7d8a44d3298f02acca --- Source/ThirdParty/OpenFBX/ofbx.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/ThirdParty/OpenFBX/ofbx.cpp b/Source/ThirdParty/OpenFBX/ofbx.cpp index e3cbd6230..e60211e3d 100644 --- a/Source/ThirdParty/OpenFBX/ofbx.cpp +++ b/Source/ThirdParty/OpenFBX/ofbx.cpp @@ -2982,9 +2982,9 @@ static void parseGlobalInfo(const Element& root, Scene* scene) { if (!node->first_property) continue; - get_text_property("Original|ApplicationVendor", scene->m_info.AppVendor, UpVector, toInt); - get_text_property("Original|ApplicationName", scene->m_info.AppName, UpVector, toInt); - get_text_property("Original|ApplicationVersion", scene->m_info.AppVersion, UpVector, toInt); + get_text_property("Original|ApplicationVendor", scene->m_info.AppVendor); + get_text_property("Original|ApplicationName", scene->m_info.AppName); + get_text_property("Original|ApplicationVersion", scene->m_info.AppVersion); } break; }