mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:14:59 +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
|
||||
auto it = blendshapeLookupMap.find(name);
|
||||
QMap<QString, int>::iterator it = blendshapeLookupMap.find(name);
|
||||
if (it != blendshapeLookupMap.end()) {
|
||||
if (_blendshapeCoefficients.size() <= it.value()) {
|
||||
_blendshapeCoefficients.resize(it.value() + 1);
|
||||
|
|
Loading…
Reference in a new issue