Fix Double Precision errors/warnings

This commit is contained in:
Madrich
2021-08-31 12:59:31 +02:00
parent 43a3c4a05e
commit 9b535d1c15
3 changed files with 4 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ using namespace Assimp;
// ------------------------------------------------------------------------------------------------
// Constructor to be privately used by Importer
CalcTangentsProcess::CalcTangentsProcess() :
configMaxAngle(AI_DEG_TO_RAD(45.f)), configSourceUV(0) {
configMaxAngle(float(AI_DEG_TO_RAD(45.f))), configSourceUV(0) {
// nothing to do here
}