2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 13:44:56 +00:00

ParticleCommon: Fix IESampleAndHold element ordering

This commit is contained in:
2020-09-24 03:17:17 -04:00
parent 6e3d94483c
commit 8b597112be
2 changed files with 2 additions and 2 deletions

View File

@@ -917,9 +917,9 @@ struct IEMultiply : IIntElement {
struct IESampleAndHold : IIntElement {
AT_DECL_DNA_YAMLV_NO_TYPE
IntElementFactory val;
IntElementFactory waitMin;
IntElementFactory waitMax;
IntElementFactory val;
std::string_view ClassID() const override { return "SPAH"sv; }
};