mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 13:03:55 +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
|
||||
void __declspec(dllimport) initializeLicenseManager(char* licenseKeyFileName);
|
||||
#else
|
||||
void initializeLicenseManager(char* licenseKeyFileName);
|
||||
void initializeLicenseManager(char* licenseKeyFileName);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -136,7 +136,7 @@ void Visage::update() {
|
|||
} else if (name == "au_right_inner_brow_raiser") {
|
||||
_rightInnerBrowIndex = i;
|
||||
}
|
||||
int index = getBlendshapeIndices().value(_data->actionUnitsNames[i]) - 1;
|
||||
int index = getBlendshapeIndices().value(name) - 1;
|
||||
maxIndex = qMax(maxIndex, _blendshapeIndices[i] = index);
|
||||
}
|
||||
_blendshapeCoefficients.resize(maxIndex + 1);
|
||||
|
|
Loading…
Reference in a new issue