From: havoc Date: Tue, 20 Aug 2002 22:47:31 +0000 (+0000) Subject: corrected spelling of alorgithm X-Git-Tag: RELEASE_0_2_0_RC1~327 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=fd546d3a42e1a3ddfc4b6487b6d26da52f33b403;p=xonotic%2Fdarkplaces.git corrected spelling of alorgithm git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2266 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/fractalnoise.c b/fractalnoise.c index 4574902f..06d00db0 100644 --- a/fractalnoise.c +++ b/fractalnoise.c @@ -32,7 +32,7 @@ void fractalnoise(qbyte *noise, int size, int startgrid) g = g2 >> 1; if (g) { - // subdivide, diamond-square algorythm (really this has little to do with squares) + // subdivide, diamond-square algorithm (really this has little to do with squares) // diamond for (y = 0;y < size;y += g2) for (x = 0;x < size;x += g2) @@ -94,7 +94,7 @@ void fractalnoisequick(qbyte *noise, int size, int startgrid) g = g2 >> 1; if (g) { - // subdivide, diamond-square algorythm (really this has little to do with squares) + // subdivide, diamond-square algorithm (really this has little to do with squares) // diamond for (y = 0;y < size;y += g2) for (x = 0;x < size;x += g2)