Code compiles

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-08-13 17:13:14 -07:00
parent 5f7b534afd
commit 1f5dddcca6
11 changed files with 36 additions and 36 deletions
+2 -2
View File
@@ -1991,7 +1991,7 @@ void CTrackViewDialog::UpdateTracksToolBar()
&Maestro::EditorSequenceComponentRequestBus::Events::GetAllAnimatablePropertiesForComponent,
animatableProperties, azEntityId, pAnimNode->GetComponentId());
paramCount = animatableProperties.size();
paramCount = static_cast<int>(animatableProperties.size());
}
}
else
@@ -2317,7 +2317,7 @@ void CTrackViewDialog::SaveCurrentSequenceToFBX()
CTrackViewTrackBundle allTracks = sequence->GetAllTracks();
for (int trackID = 0; trackID < allTracks.GetCount(); ++trackID)
for (unsigned int trackID = 0; trackID < allTracks.GetCount(); ++trackID)
{
CTrackViewTrack* pCurrentTrack = allTracks.GetTrack(trackID);