1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

cppcheck - defensive programming on i index check order

This commit is contained in:
firefly2442
2018-05-23 00:15:35 -06:00
parent 0980991e64
commit b22c1dd0f7

View File

@@ -500,7 +500,7 @@ public:
virtual String get_tooltip(const Point2 &p_pos) const {
for (int i = 0; i < flag_rects.size(); i++) {
if (flag_rects[i].has_point(p_pos) && i < names.size()) {
if (i < names.size() && flag_rects[i].has_point(p_pos)) {
return names[i];
}
}