From 84788917d2deb14f07c5710f2f9eaaae3f0b50a2 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Tue, 7 Apr 2015 13:34:17 +0200 Subject: Rename damage blobs to damage indicators. --- src/game/g_local.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/game/g_local.h') 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; }; -- cgit