diff options
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; }; |