Making some small tweaks for consistency / code format

This commit is contained in:
Jonathan Thomas
2016-08-02 18:18:24 -05:00
parent da618e7248
commit d7f4b08844
2 changed files with 3 additions and 7 deletions

View File

@@ -367,7 +367,7 @@ void Keyframe::SetJsonValue(Json::Value root) {
if (!root["Points"].isNull())
// loop through points
for (unsigned int x = 0; x < root["Points"].size(); x++) {
for (long int x = 0; x < root["Points"].size(); x++) {
// Get each point
Json::Value existing_point = root["Points"][x];