mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 06:57:37 +02:00
Make MSVC happy.
This commit is contained in:
parent
731bcba956
commit
a1f86cc7b8
1 changed files with 1 additions and 1 deletions
|
@ -450,7 +450,7 @@ void Rig::updateAnimations(float deltaTime, glm::mat4 parentTransform) {
|
||||||
}
|
}
|
||||||
// collect the remaining fade data
|
// collect the remaining fade data
|
||||||
float fadeSum = 0.0f;
|
float fadeSum = 0.0f;
|
||||||
float normalizedFades[_runningAnimations.count()];
|
std::vector<float> normalizedFades(_runningAnimations.count());
|
||||||
int animationIndex = 0;
|
int animationIndex = 0;
|
||||||
foreach (const AnimationHandlePointer& handle, _runningAnimations) {
|
foreach (const AnimationHandlePointer& handle, _runningAnimations) {
|
||||||
float fade = handle->getFade();
|
float fade = handle->getFade();
|
||||||
|
|
Loading…
Reference in a new issue