diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2011-04-14 23:17:19 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:18:04 +0000 |
commit | 9dc78be8b539c1191e4a08720cbb1ef4f0954f0e (patch) | |
tree | 8bbfd6efa9e9b6eb035eed86026cc3669ac6c65c /src/game/g_local.h | |
parent | 35c07c2cbd1f15f510ccc5a2cae9102318c9e645 (diff) |
* const in G_CheckSpawnPoint
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index 1c1ac54b..7ea873cd 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -774,8 +774,9 @@ typedef enum IBE_MAXERRORS } itemBuildError_t; -gentity_t *G_CheckSpawnPoint( int spawnNum, vec3_t origin, vec3_t normal, - buildable_t spawn, vec3_t spawnOrigin ); +gentity_t *G_CheckSpawnPoint( int spawnNum, const vec3_t origin, + const vec3_t normal, buildable_t spawn, + vec3_t spawnOrigin ); buildable_t G_IsPowered( vec3_t origin ); qboolean G_IsDCCBuilt( void ); |