mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-24 12:47:12 +01:00
Fix shadowed declaration.
This commit is contained in:
parent
30a2cda543
commit
4af170d9fb
@ -117,8 +117,8 @@ Array MDREDMeshDecompose::get_handle_edge_to_vertex_map(const Array &arrays) {
|
|||||||
PoolIntArray::Read r = etm.read();
|
PoolIntArray::Read r = etm.read();
|
||||||
|
|
||||||
bool found = false;
|
bool found = false;
|
||||||
for (int i = 0; i < etm.size(); ++i) {
|
for (int ii = 0; ii < etm.size(); ++ii) {
|
||||||
if (etm[i] == ei1) {
|
if (etm[ii] == ei1) {
|
||||||
found = true;
|
found = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user