Skip to content

Commit

Permalink
Removed debugging for map
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosc1 committed Jan 30, 2025
1 parent 21a9183 commit a431df3
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions DeadZone/source/Map/Map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,6 @@ void Map::readMapFromBuffer(const std::vector<std::vector<std::string>>& buffer)

this->createEnclosedAreas();

for (int i = 0; i < mapString.size(); i++)
{
for (int j = 0; j < mapString[i].size(); j++)
{
std::cout << mapString[i][j] << " ";
}
std::cout << std::endl;
}

this->mapLoaded = true;
}

Expand Down

0 comments on commit a431df3

Please sign in to comment.