From a9cc51b22c9b02632301f2de9c93784560f5146a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 8 Mar 2022 20:16:18 +0900 Subject: [PATCH] [particles] Use correct index for source ramp This fixes both the weird colors and a segfault in the 32-bit software renderer. --- libs/video/renderer/r_part.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/video/renderer/r_part.c b/libs/video/renderer/r_part.c index 1eafeca54..3c3898ee3 100644 --- a/libs/video/renderer/r_part.c +++ b/libs/video/renderer/r_part.c @@ -100,7 +100,7 @@ R_RunParticles (float dT) if (p->live <= 0 || p->ramp >= parm->ramp_max) { continue; } - const int *ramp = ps->partramps[j]; + const int *ramp = ps->partramps[i]; if (i > j) { ps->particles[j] = *p; ps->partparams[j] = *parm;