mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 14:29:13 +02:00
Removed tab, variable fix.
This commit is contained in:
parent
c4e643e3a4
commit
a89983a1c0
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ namespace VisageSDK {
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
void __declspec(dllimport) initializeLicenseManager(char* licenseKeyFileName);
|
void __declspec(dllimport) initializeLicenseManager(char* licenseKeyFileName);
|
||||||
#else
|
#else
|
||||||
void initializeLicenseManager(char* licenseKeyFileName);
|
void initializeLicenseManager(char* licenseKeyFileName);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,7 +136,7 @@ void Visage::update() {
|
||||||
} else if (name == "au_right_inner_brow_raiser") {
|
} else if (name == "au_right_inner_brow_raiser") {
|
||||||
_rightInnerBrowIndex = i;
|
_rightInnerBrowIndex = i;
|
||||||
}
|
}
|
||||||
int index = getBlendshapeIndices().value(_data->actionUnitsNames[i]) - 1;
|
int index = getBlendshapeIndices().value(name) - 1;
|
||||||
maxIndex = qMax(maxIndex, _blendshapeIndices[i] = index);
|
maxIndex = qMax(maxIndex, _blendshapeIndices[i] = index);
|
||||||
}
|
}
|
||||||
_blendshapeCoefficients.resize(maxIndex + 1);
|
_blendshapeCoefficients.resize(maxIndex + 1);
|
||||||
|
|
Loading…
Reference in a new issue