Fixed build

This commit is contained in:
Christophe Riccio
2011-09-25 02:25:26 +01:00
parent 387854dbe3
commit ca88ff50dd
2 changed files with 17 additions and 2 deletions

View File

@@ -92,8 +92,8 @@ GLM_FUNC_QUALIFIER genType gaussRand
do
{
x1 = compRand1(genType(-1), genType(1));
x2 = compRand1(genType(-1), genType(1));
x1 = linearRand(genType(-1), genType(1));
x2 = linearRand(genType(-1), genType(1));
w = x1 * x1 + x2 * x2;
} while(w > genType(1));