From 70f064b732c063d76b58f9623ad7de5a36a03469 Mon Sep 17 00:00:00 2001 From: johns <> Date: Thu, 8 Jun 2000 23:44:37 +0000 Subject: [PATCH] Made open set bigger. --- src/pathfinder/astar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pathfinder/astar.cpp b/src/pathfinder/astar.cpp index e6b9cd958..df9e7314a 100644 --- a/src/pathfinder/astar.cpp +++ b/src/pathfinder/astar.cpp @@ -54,7 +54,7 @@ local int Threshold; local int OpenSetMaxSize; local int AStarMatrixSize; #define MAX_CLOSE_SET_RATIO 4 -#define MAX_OPEN_SET_RATIO 10 // 16 to small +#define MAX_OPEN_SET_RATIO 8 // 10,16 to small /// see pathfinder.h global int AStarFixedUnitCrossingCost=MaxMapWidth*MaxMapHeight;