From e2d6b7ab2869de40093973ba92befd0ff14c6e8b Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 30 Jun 2026 21:57:58 +0500 Subject: [PATCH] ref: gl: do not deadname LadyHavoc --- ref/gl/gl_sprite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref/gl/gl_sprite.c b/ref/gl/gl_sprite.c index 30f8f2f3..5ae3bc3a 100644 --- a/ref/gl/gl_sprite.c +++ b/ref/gl/gl_sprite.c @@ -111,7 +111,7 @@ static float R_GetSpriteFrameInterpolant( cl_entity_t *ent, mspriteframe_t **old // are positive, so we don't have to worry about division by zero float targettime = time - ((int)(time / fullinterval)) * fullinterval; - // LordHavoc: since I can't measure the time properly when it loops from numframes - 1 to 0, + // LadyHavoc: since I can't measure the time properly when it loops from numframes - 1 to 0, // i instead measure the time of the first frame, hoping it is consistent int i, j; for( i = 0, j = numframes - 1; i < (numframes - 1); i++ )