Fixed: Initialize members in UnrealLoader

pull/596/head
Richard 2015-06-30 23:40:54 -06:00
parent 3553c4aff2
commit 32a460f667
1 changed files with 3 additions and 1 deletions

View File

@ -82,7 +82,9 @@ struct Triangle {
// temporary representation for a material // temporary representation for a material
struct TempMat { struct TempMat {
TempMat() TempMat()
: numFaces (0) : type()
, tex()
, numFaces (0)
{} {}
TempMat(const Triangle& in) TempMat(const Triangle& in)