Added EQEmuLogSys logger; pointer to the rest of the projects

This commit is contained in:
Akkadius
2015-01-10 18:12:58 -06:00
parent b7ade8bf1b
commit 7a9860fdd1
11 changed files with 30 additions and 9 deletions
+2 -2
View File
@@ -206,10 +206,10 @@ Map::Vertex PathManager::GetPathNodeCoordinates(int NodeNumber, bool BestZ)
}
std::deque<int> PathManager::FindRoute(int startID, int endID)
{
{
_log(PATHING__DEBUG, "FindRoute from node %i to %i", startID, endID);
memset(ClosedListFlag, 0, sizeof(int) * Head.PathNodeCount);
memset(ClosedListFlag, 0, sizeof(int) * Head.PathNodeCount);
std::deque<AStarNode> OpenList, ClosedList;