removed double semi-colons

This commit is contained in:
Dante Ruiz 2017-06-01 22:30:50 +01:00
parent 0e82b33d6d
commit 725388043f

View file

@ -217,7 +217,7 @@ namespace controller {
for (int actionIndex = 0; actionIndex < actionArrayList.size(); actionIndex++) {
QJsonArray actionState = actionArrayList[actionIndex].toArray();
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();
}
_actionStateList.push_back(_currentFrameActions);