]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - fractalnoise.c
Corrected names in credits to be more accurate and consistent.
[xonotic/darkplaces.git] / fractalnoise.c
index 5d68d196e6bcf8c2e95cbe105788323d9bf551cc..979954565c7894860897c77a1c24e60d00b356a7 100644 (file)
@@ -133,7 +133,7 @@ float noise4f(float x, float y, float z, float w)
        float v[4];
        static float noisetable[NOISE_SIZE];
        static int r[NOISE_SIZE];
-       // LordHavoc: this is inspired by code I saw in Quake3, however I think my
+       // LadyHavoc: this is inspired by code I saw in Quake3, however I think my
        // version is much cleaner and substantially faster as well
        //
        // the following changes were made: