[generator] Fix error typo.

This commit is contained in:
vng 2012-06-03 20:56:22 +03:00 committed by Alex Zolotarev
parent 7734c314e6
commit af9cd9daa0

View file

@ -109,7 +109,7 @@ void FeatureParams::AddTypes(FeatureParams const & rhs, uint32_t skipType2)
uint32_t t = rhs.m_Types[i];
ftype::TruncValue(t, 2);
if (t != skipType2)
m_Types.push_back(t);
m_Types.push_back(rhs.m_Types[i]);
}
}
}