diff options
Diffstat (limited to 'src/client/snd_local.h')
-rw-r--r-- | src/client/snd_local.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/snd_local.h b/src/client/snd_local.h index f139fa5e..0c404cf2 100644 --- a/src/client/snd_local.h +++ b/src/client/snd_local.h @@ -76,6 +76,8 @@ typedef struct { #define MAX_DOPPLER_SCALE 50.0f //arbitrary +#define THIRD_PERSON_THRESHOLD_SQ (48.0f*48.0f) + typedef struct loopSound_s { vec3_t origin; vec3_t velocity; @@ -104,6 +106,7 @@ typedef struct qboolean fixed_origin; // use origin instead of fetching entnum's origin sfx_t *thesfx; // sfx structure qboolean doppler; + qboolean fullVolume; } channel_t; |