Blender: Silence warning about uninitialized member

pull/1578/head
Turo Lamminen 2017-11-18 16:50:45 +02:00
parent 2c8cc1f732
commit 8ae7231654
1 changed files with 8 additions and 0 deletions

View File

@ -225,6 +225,14 @@ struct TFace : ElemBase {
// -------------------------------------------------------------------------------
struct MTFace : ElemBase {
MTFace()
: flag(0)
, mode(0)
, tile(0)
, unwrap(0)
{
}
float uv[4][2] FAIL;
char flag;
short mode;