]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cl_particles.c
Fix UI rendering to not use the bouncegrid texture; it looked interesting on the...
[xonotic/darkplaces.git] / cl_particles.c
index 6d99fe0156a5ec8ab63d4d2d1c55d7e96d766b65..e85b10b7aaced8edaacbbd8da01981e29263d718 100644 (file)
@@ -2572,7 +2572,7 @@ void R_DrawDecals (void)
        frametime = bound(0, cl.time - cl.decals_updatetime, 1);
        cl.decals_updatetime = bound(cl.time - 1, cl.decals_updatetime + frametime, cl.time + 1);
 
-       // LordHavoc: early out conditions
+       // LadyHavoc: early out conditions
        if (!cl.num_decals)
                return;
 
@@ -2935,7 +2935,7 @@ void R_DrawParticles (void)
        frametime = bound(0, cl.time - cl.particles_updatetime, 1);
        cl.particles_updatetime = bound(cl.time - 1, cl.particles_updatetime + frametime, cl.time + 1);
 
-       // LordHavoc: early out conditions
+       // LadyHavoc: early out conditions
        if (!cl.num_particles)
                return;