From e147ed40e85698cd26934efae666565840076cc5 Mon Sep 17 00:00:00 2001 From: icculus Date: Tue, 15 Sep 2009 01:44:58 +0000 Subject: Renamed bot_developer to botDeveloper to prevent symbol clash. qagame*.so has a variable named this too, and this confuses the Linux dynamic loader since we're not using -fvisibility=hidden. Fixes Bugzilla #3944. git-svn-id: svn://svn.icculus.org/quake3/trunk@1607 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/botlib/be_aas_route.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'code/botlib/be_aas_route.c') diff --git a/code/botlib/be_aas_route.c b/code/botlib/be_aas_route.c index e31202b..0d240dc 100644 --- a/code/botlib/be_aas_route.c +++ b/code/botlib/be_aas_route.c @@ -311,7 +311,7 @@ int AAS_EnableRoutingArea(int areanum, int enable) if (areanum <= 0 || areanum >= aasworld.numareas) { - if (bot_developer) + if (botDeveloper) { botimport.Print(PRT_ERROR, "AAS_EnableRoutingArea: areanum %d out of range\n", areanum); } //end if @@ -1603,7 +1603,7 @@ int AAS_AreaRouteToGoalArea(int areanum, vec3_t origin, int goalareanum, int tra // if (areanum <= 0 || areanum >= aasworld.numareas) { - if (bot_developer) + if (botDeveloper) { botimport.Print(PRT_ERROR, "AAS_AreaTravelTimeToGoalArea: areanum %d out of range\n", areanum); } //end if @@ -1611,7 +1611,7 @@ int AAS_AreaRouteToGoalArea(int areanum, vec3_t origin, int goalareanum, int tra } //end if if (goalareanum <= 0 || goalareanum >= aasworld.numareas) { - if (bot_developer) + if (botDeveloper) { botimport.Print(PRT_ERROR, "AAS_AreaTravelTimeToGoalArea: goalareanum %d out of range\n", goalareanum); } //end if -- cgit v1.2.3