Remove unused loop counter from EditorPropertySizeFlags::setup()

This commit is contained in:
DeeJayLSP
2026-05-05 20:01:30 -03:00
parent 1f012286cf
commit 995d280a1e
+1 -1
View File
@@ -373,7 +373,7 @@ void EditorPropertySizeFlags::setup(const Vector<String> &p_options, bool p_vert
}
HashMap<int, String> flags;
for (int i = 0, j = 0; i < p_options.size(); i++, j++) {
for (int i = 0; i < p_options.size(); i++) {
Vector<String> text_split = p_options[i].split(":");
int64_t current_val = text_split[1].to_int();
flags[current_val] = text_split[0];