From 1fb90357b289800a1fd7c58fdfc65a5a3dcec860 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Fri, 3 Sep 2010 10:09:41 +0000 Subject: [PATCH] Fix build error This was SVN commit r8059. --- source/simulation2/components/tests/test_Pathfinder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/simulation2/components/tests/test_Pathfinder.h b/source/simulation2/components/tests/test_Pathfinder.h index a3dbf99783..712f3e9b8c 100644 --- a/source/simulation2/components/tests/test_Pathfinder.h +++ b/source/simulation2/components/tests/test_Pathfinder.h @@ -111,7 +111,7 @@ public: fixed x = fixed::FromFloat(1.5f*range.ToFloat() * rand()/(float)RAND_MAX); fixed z = fixed::FromFloat(1.5f*range.ToFloat() * rand()/(float)RAND_MAX); // printf("# %f %f\n", x.ToFloat(), z.ToFloat()); - cmpObstructionMan->AddUnitShape(x, z, fixed::FromInt(2), false); + cmpObstructionMan->AddUnitShape(x, z, fixed::FromInt(2), false, INVALID_ENTITY); } NullObstructionFilter filter;