Note CMVEFastConstant bug in 0-00

This commit is contained in:
Luke Street 2020-09-24 03:00:15 -04:00
parent d5596e6430
commit 6e3d94483c
1 changed files with 2 additions and 0 deletions

View File

@ -209,6 +209,8 @@ std::unique_ptr<CModVectorElement> CParticleDataFactory::GetModVectorElement(CIn
a->GetValue(0, af);
b->GetValue(0, bf);
c->GetValue(0, cf);
// NOTE: 0-00 bug uses the value of a for each element
// Other versions unknown
return std::make_unique<CMVEFastConstant>(af, bf, cf);
} else {
return std::make_unique<CMVEConstant>(std::move(a), std::move(b), std::move(c));