Fixed: Initialize members in UnrealLoader

This commit is contained in:
Richard
2015-06-30 23:40:54 -06:00
parent 3553c4aff2
commit 32a460f667

View File

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