mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-09 10:19:36 +02:00
FIxed error on ubuntu
This commit is contained in:
parent
3d3b4572e3
commit
9ac8b732f0
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ void HeadData::setBlendshape(QString name, float val) {
|
||||||
}
|
}
|
||||||
|
|
||||||
//Check to see if the named blendshape exists, and then set its value if it does
|
//Check to see if the named blendshape exists, and then set its value if it does
|
||||||
auto it = blendshapeLookupMap.find(name);
|
QMap<QString, int>::iterator it = blendshapeLookupMap.find(name);
|
||||||
if (it != blendshapeLookupMap.end()) {
|
if (it != blendshapeLookupMap.end()) {
|
||||||
if (_blendshapeCoefficients.size() <= it.value()) {
|
if (_blendshapeCoefficients.size() <= it.value()) {
|
||||||
_blendshapeCoefficients.resize(it.value() + 1);
|
_blendshapeCoefficients.resize(it.value() + 1);
|
||||||
|
|
Loading…
Reference in a new issue