mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 12:26:59 +01:00
Fix sign compare warning.
This commit is contained in:
parent
32b3d1bd0d
commit
1644490a3e
@ -126,7 +126,7 @@ void MatMakerGDEditor::recreate() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < nodes.size(); ++i) {
|
for (uint32_t i = 0; i < nodes.size(); ++i) {
|
||||||
_graph_edit->remove_child(nodes[i]);
|
_graph_edit->remove_child(nodes[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user