mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 14:18:24 +02:00
removed double semi-colons
This commit is contained in:
parent
0e82b33d6d
commit
725388043f
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ namespace controller {
|
||||||
for (int actionIndex = 0; actionIndex < actionArrayList.size(); actionIndex++) {
|
for (int actionIndex = 0; actionIndex < actionArrayList.size(); actionIndex++) {
|
||||||
QJsonArray actionState = actionArrayList[actionIndex].toArray();
|
QJsonArray actionState = actionArrayList[actionIndex].toArray();
|
||||||
for (int index = 0; index < actionState.size(); index++) {
|
for (int index = 0; index < actionState.size(); index++) {
|
||||||
QJsonObject actionObject = actionState[index].toObject();;
|
QJsonObject actionObject = actionState[index].toObject();
|
||||||
_currentFrameActions[actionObject["name"].toString()] = actionObject["value"].toDouble();
|
_currentFrameActions[actionObject["name"].toString()] = actionObject["value"].toDouble();
|
||||||
}
|
}
|
||||||
_actionStateList.push_back(_currentFrameActions);
|
_actionStateList.push_back(_currentFrameActions);
|
||||||
|
|
Loading…
Reference in a new issue