diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2015-04-07 13:34:17 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2015-04-07 13:34:17 +0200 |
commit | 84788917d2deb14f07c5710f2f9eaaae3f0b50a2 (patch) | |
tree | 0eca2e499cd6d744c6be2f55db5c91d1aa906781 /src/game/g_local.h | |
parent | 7bf6dbfed060ded89da8c53ae8b712e62bd19da2 (diff) |
Rename damage blobs to damage indicators.
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index cbf98bd..b4f6d81 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -403,13 +403,13 @@ typedef struct unlagged_s { qboolean used; } unlagged_t; -#define MAX_BUFFERED_BLOBS 20 +#define MAX_BUFFERED_DAMAGE_INDICATORS 20 typedef struct { vec3_t origin; int value; int flags; -} g_damageBlob_t; +} g_damageIndicator_t; #define MAX_TRAMPLE_BUILDABLES_TRACKED 20 // this structure is cleared on each ClientSpawn(), @@ -520,8 +520,8 @@ struct gclient_s int notrackEndTime; // Time when the current no track period ends int blobs; - g_damageBlob_t blobBuffer[ MAX_BUFFERED_BLOBS ]; - int bufferedBlobCount; + g_damageIndicator_t diBuffer[ MAX_BUFFERED_DAMAGE_INDICATORS ]; + int diBufferCounter; }; |