From fd546d3a42e1a3ddfc4b6487b6d26da52f33b403 Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 20 Aug 2002 22:47:31 +0000 Subject: [PATCH] corrected spelling of alorgithm git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2266 d7cf8633-e32d-0410-b094-e92efae38249 --- fractalnoise.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.2