diff options
author | Tim Angus <tim@ngus.net> | 2005-12-23 14:58:08 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-12-23 14:58:08 +0000 |
commit | 4b614e63d7da358a8a30e61a89365add79ecde9c (patch) | |
tree | 4359a65c759e098e6efc8c31c28d337f3ba66689 /src/cgame/cg_local.h | |
parent | 07af35d09bd690d0f4ce059c4b3069917b8a49a4 (diff) |
* Crudely removed CD key authentication
* Changed defaults for r_picmip and r_textureMode
* Changed internal alien weapon names
* Removed playback of the intro movie
* Fixed painblend reset bug
* Added multiple chat sounds
* Player splash wake now uses mark system
Diffstat (limited to 'src/cgame/cg_local.h')
-rw-r--r-- | src/cgame/cg_local.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/cgame/cg_local.h b/src/cgame/cg_local.h index b319e547..f31e2cde 100644 --- a/src/cgame/cg_local.h +++ b/src/cgame/cg_local.h @@ -92,10 +92,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA typedef enum { FOOTSTEP_NORMAL, - FOOTSTEP_BOOT, FOOTSTEP_FLESH, - FOOTSTEP_MECH, - FOOTSTEP_ENERGY, FOOTSTEP_METAL, FOOTSTEP_SPLASH, FOOTSTEP_CUSTOM, @@ -1125,7 +1122,7 @@ typedef struct consoleLine_t consoleLines[ MAX_CONSOLE_LINES ]; int numConsoleLines; - particleSystem_t *poisonCloudPS; + particleSystem_t *poisonCloudPS; float painBlendValue; float painBlendTarget; @@ -1148,7 +1145,6 @@ typedef struct qhandle_t balloonShader; qhandle_t connectionShader; - qhandle_t selectShader; qhandle_t viewBloodShader; qhandle_t tracerShader; qhandle_t crosshairShader[ WP_NUM_WEAPONS ]; @@ -1181,11 +1177,13 @@ typedef struct sfxHandle_t selectSound; sfxHandle_t footsteps[ FOOTSTEP_TOTAL ][ 4 ]; sfxHandle_t talkSound; + sfxHandle_t alienTalkSound; + sfxHandle_t humanTalkSound; sfxHandle_t landSound; sfxHandle_t fallSound; - sfxHandle_t hgrenb1aSound; - sfxHandle_t hgrenb2aSound; + sfxHandle_t hardBounceSound1; + sfxHandle_t hardBounceSound2; sfxHandle_t voteNow; sfxHandle_t votePassed; |