mirror of
https://github.com/blupi-games/planetblupi
synced 2024-12-30 10:15:36 +01:00
Fix sign
This commit is contained in:
parent
7b0294d9cf
commit
f023eb6723
@ -292,8 +292,8 @@ CDecor::Read (
|
||||
}
|
||||
|
||||
/* Restore the flagged state where flagged ground */
|
||||
for (int i = 0; i < countof (m_decor); ++i)
|
||||
for (int j = 0; j < countof (m_decor[i]); ++j)
|
||||
for (size_t i = 0; i < countof (m_decor); ++i)
|
||||
for (size_t j = 0; j < countof (m_decor[i]); ++j)
|
||||
{
|
||||
if (m_decor[i][j].objectIcon == 124)
|
||||
m_decorMem[i][j].flagged = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user