X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=fractalnoise.c;h=979954565c7894860897c77a1c24e60d00b356a7;hp=5d68d196e6bcf8c2e95cbe105788323d9bf551cc;hb=b5f2509c170bf13f83cdb0e5d25f9cfc7469e986;hpb=40974a11ff38b178bdae401855213aa244c922cf diff --git a/fractalnoise.c b/fractalnoise.c index 5d68d196..97995456 100644 --- a/fractalnoise.c +++ b/fractalnoise.c @@ -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: