diff options
| author | louist103 <35883445+louist103@users.noreply.github.com> | 2024-01-30 19:14:55 -0500 |
|---|---|---|
| committer | louist103 <35883445+louist103@users.noreply.github.com> | 2025-03-29 13:50:21 -0400 |
| commit | ac0646fdf93c16df01e15e1bf5121552257f871c (patch) | |
| tree | dda1fa26a871b9a76a02f8d5756ab353d6a1c2aa | |
| parent | bcef647d459d44c5dfe5f280cbbff93cd2414644 (diff) | |
KeyFrameExporter
| -rw-r--r-- | OTRExporter/CKeyFrameExporter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OTRExporter/CKeyFrameExporter.cpp b/OTRExporter/CKeyFrameExporter.cpp index 9b3320a..8828ce0 100644 --- a/OTRExporter/CKeyFrameExporter.cpp +++ b/OTRExporter/CKeyFrameExporter.cpp @@ -75,8 +75,8 @@ void OTRExporter_CKeyFrameAnim::Save(ZResource* res, const fs::path& outPath, Bi writer->Write(b);
}
} else {
- writer->Write((uint32_t)anim->bitFlagsFLex.size());
- for (const auto b : anim->bitFlagsFLex) {
+ writer->Write((uint32_t)anim->bitFlagsFlex.size());
+ for (const auto b : anim->bitFlagsFlex) {
writer->Write(b);
}
}
@@ -93,8 +93,8 @@ void OTRExporter_CKeyFrameAnim::Save(ZResource* res, const fs::path& outPath, Bi writer->Write(kf);
}
- writer->Write((uint32_t)anim->presentValues.size());
- for (const auto pv : anim->presentValues) {
+ writer->Write((uint32_t)anim->presetValues.size());
+ for (const auto pv : anim->presetValues) {
writer->Write(pv);
}
|
