diff --git a/src/r_data/models.cpp b/src/r_data/models.cpp index bb35af03c..9c204df04 100644 --- a/src/r_data/models.cpp +++ b/src/r_data/models.cpp @@ -425,9 +425,9 @@ void InitModels() smf.animationIDs[0] = -1; smf.xscale = smf.yscale = smf.zscale = VoxelDefs[i]->Scale; smf.angleoffset = VoxelDefs[i]->AngleOffset.Degrees(); - if (VoxelDefs[i]->PitchFromMomentum) smf.flags |= MDL_PITCHFROMMOMENTUM; - if (VoxelDefs[i]->UseActorPitch) smf.flags |= MDL_USEACTORPITCH; - if (VoxelDefs[i]->UseActorRoll) smf.flags |= MDL_USEACTORROLL; + if (VoxelDefs[i]->PitchFromMomentum == true) smf.flags |= MDL_PITCHFROMMOMENTUM; + if (VoxelDefs[i]->UseActorPitch == true) smf.flags |= MDL_USEACTORPITCH; + if (VoxelDefs[i]->UseActorRoll == true) smf.flags |= MDL_USEACTORROLL; if (VoxelDefs[i]->PlacedSpin != 0) { smf.yrotate = 1.f;