]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
made smoke/blood texture a little brighter
authorlordhavoc <lordhavoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 15 Feb 2002 21:29:45 +0000 (21:29 +0000)
committerlordhavoc <lordhavoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 15 Feb 2002 21:29:45 +0000 (21:29 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1520 d7cf8633-e32d-0410-b094-e92efae38249

r_particles.c

index affa059b3dc551b2e8e0a3814427a8273bfeff12..0c888ecbaa2c3f7bb714d4429a1d76d85f14d05e 100644 (file)
@@ -99,7 +99,7 @@ static void R_InitParticleTexture (void)
                                dy = y - 16;
                                for (x = 0;x < 32;x++)
                                {
-                                       d = (noise1[y][x] - 128) * 2 + 64; // was + 128
+                                       d = (noise1[y][x] - 128) * 2 + 128;
                                        d = bound(0, d, 255);
                                        data[y][x][0] = data[y][x][1] = data[y][x][2] = d;
                                        dx = x - 16;