2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 13:11:22 +00:00

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

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));