mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Clang warning
This commit is contained in:
parent
dc2c80d25c
commit
a9af6c7830
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