Part of #21421: refactor also test

This commit is contained in:
Claudio Tiecher 2024-03-25 17:09:25 +01:00
parent 4d99fec550
commit a1fd280a27
1 changed files with 2 additions and 2 deletions

View File

@ -117,9 +117,9 @@ template<typename T> bool CompareLists(const CoordsXY& pos)
template<typename T> void CheckMapTiles()
{
for (int y = 0; y < MAXIMUM_MAP_SIZE_TECHNICAL; ++y)
for (int y = 0; y < kMaximumMapSizeTechnical; ++y)
{
for (int x = 0; x < MAXIMUM_MAP_SIZE_TECHNICAL; ++x)
for (int x = 0; x < kMaximumMapSizeTechnical; ++x)
{
auto pos = TileCoordsXY(x, y).ToCoordsXY();