diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-04 22:32:00 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-04 22:32:00 +0000 |
commit | 11e5099eb7abb2e016527795ffd32c5094e5324f (patch) | |
tree | 3de0470c8544b681df252ad1c5e3724320b54d9c /code/botlib | |
parent | 657f95c6a5d8a24df0c1a206eb32f54985c7b4fe (diff) | |
download | ioquake3-aero-11e5099eb7abb2e016527795ffd32c5094e5324f.tar.gz ioquake3-aero-11e5099eb7abb2e016527795ffd32c5094e5324f.zip |
* Replaced a bunch of inline and __inline with ID_INLINE
* Replaced a bunch of __i386__ with id386
* General tidy up of asm preprocessor decisions
* Removed C_ONLY from the dedicated server build
git-svn-id: svn://svn.icculus.org/quake3/trunk@269 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/botlib')
-rw-r--r-- | code/botlib/be_aas_route.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/code/botlib/be_aas_route.c b/code/botlib/be_aas_route.c index 95a255b..56b1613 100644 --- a/code/botlib/be_aas_route.c +++ b/code/botlib/be_aas_route.c @@ -106,7 +106,7 @@ void AAS_RoutingInfo(void) // Returns: - // Changes Globals: - //=========================================================================== -__inline int AAS_ClusterAreaNum(int cluster, int areanum) +ID_INLINE int AAS_ClusterAreaNum(int cluster, int areanum) { int side, areacluster; @@ -166,7 +166,7 @@ void AAS_InitTravelFlagFromType(void) // Returns: - // Changes Globals: - //=========================================================================== -__inline int AAS_TravelFlagForType_inline(int traveltype) +ID_INLINE int AAS_TravelFlagForType_inline(int traveltype) { int tfl; @@ -339,7 +339,7 @@ int AAS_EnableRoutingArea(int areanum, int enable) // Returns: - // Changes Globals: - //=========================================================================== -__inline float AAS_RoutingTime(void) +ID_INLINE float AAS_RoutingTime(void) { return AAS_Time(); } //end of the function AAS_RoutingTime @@ -379,7 +379,7 @@ int AAS_GetAreaContentsTravelFlags(int areanum) // Returns: - // Changes Globals: - //=========================================================================== -__inline int AAS_AreaContentsTravelFlags_inline(int areanum) +ID_INLINE int AAS_AreaContentsTravelFlags_inline(int areanum) { return aasworld.areacontentstravelflags[areanum]; } //end of the function AAS_AreaContentsTravelFlags |