mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 14:59:03 +00:00
Fixed: Clang warning
This commit is contained in:
parent
b4d6cba6f1
commit
06e921c978
1 changed files with 7 additions and 5 deletions
|
@ -1346,12 +1346,14 @@ public:
|
|||
CComputeCell *cell = _WorldMap.getComputeCell(scanline);
|
||||
|
||||
{
|
||||
uint i;
|
||||
for (i=0; i<16*16; ++i)
|
||||
for (uint i = 0; i < 16; ++i)
|
||||
{
|
||||
toposGridList[0][i].topos[0] =
|
||||
toposGridList[0][i].topos[1] =
|
||||
toposGridList[0][i].topos[2] = -1;
|
||||
for (uint j = 0; j < 16; ++j)
|
||||
{
|
||||
toposGridList[i][j].topos[0] =
|
||||
toposGridList[i][j].topos[1] =
|
||||
toposGridList[i][j].topos[2] = -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue