Skip to content

Commit

Permalink
fixed debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
davechurchill committed Sep 28, 2015
1 parent ffb0b88 commit e487f72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions UAlbertaBot/Source/BOSSManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ void BOSSManager::update(double timeLimit)
{
if (_smartSearch->getResults().solutionFound)
{
_previousStatus = std::string("\x03") + "BOSSSolve Solution\n";
_previousStatus = std::string("\x03") + "BOSS Solve Solution\n";
}
else
{
_previousStatus = std::string("\x07") + "BOSSSolve NoSolution\n";
_previousStatus = std::string("\x07") + "BOSS Solve NoSolution\n";
}
}

Expand Down
2 changes: 1 addition & 1 deletion UAlbertaBot/Source/DistanceMap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DistanceMap
, moveTo(std::vector<char>(BWAPI::Broodwar->mapWidth() * BWAPI::Broodwar->mapHeight(), 'X'))
, rows(BWAPI::Broodwar->mapHeight()), cols(BWAPI::Broodwar->mapWidth()), startRow(-1), startCol(-1)
{
BWAPI::Broodwar->printf("New Distance Map With Dimensions (%d, %d)", rows, cols);
//BWAPI::Broodwar->printf("New Distance Map With Dimensions (%d, %d)", rows, cols);
}

int & operator [] (const int index) { return dist[index]; }
Expand Down

0 comments on commit e487f72

Please sign in to comment.