1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

optional formal changes

This commit is contained in:
ehriche
2015-05-06 00:56:59 +02:00
parent fe13c728fd
commit 897a1aade5
15 changed files with 30 additions and 26 deletions

View File

@@ -863,17 +863,17 @@ public:
if (polygon->indices != NULL) {
r.pos=polygon->points[polygon->indices[0]];
for (int i=1; i<polygon->count; i++) {
for (int i=1; i<l; i++) {
r.expand_to(polygon->points[polygon->indices[i]]);
};
}
} else {
r.pos=polygon->points[0];
for (int i=1; i<polygon->count; i++) {
for (int i=1; i<l; i++) {
r.expand_to(polygon->points[i]);
};
};
}
}
} break;
case CanvasItem::Command::TYPE_CIRCLE: {