diff options
| author | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-09-15 01:44:58 +0000 | 
|---|---|---|
| committer | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-09-15 01:44:58 +0000 | 
| commit | e147ed40e85698cd26934efae666565840076cc5 (patch) | |
| tree | 1da96e426f1497bd756af0e29084c2d7806fdb89 /code/botlib/be_aas_route.c | |
| parent | 93404730059e9c8b6fcbf4e7c0f5ff69a23e6ea1 (diff) | |
| download | ioquake3-aero-e147ed40e85698cd26934efae666565840076cc5.tar.gz ioquake3-aero-e147ed40e85698cd26934efae666565840076cc5.zip | |
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
Diffstat (limited to 'code/botlib/be_aas_route.c')
| -rw-r--r-- | code/botlib/be_aas_route.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| 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 | 
