Version 2.01

This commit is contained in:
Gary Scavone
2013-09-25 11:17:56 +02:00
committed by Stephen Sinclair
parent 6485746ee9
commit ea749b71d2
223 changed files with 12125 additions and 4552 deletions

View File

@@ -8,7 +8,7 @@
SubNoise :: SubNoise() : Noise()
{
lastOutput = 0.0;
lastOutput = (MY_FLOAT) 0.0;
howOften = 15;
counter = 15;
}
@@ -20,7 +20,7 @@ SubNoise :: ~SubNoise()
SubNoise :: SubNoise(int subSample) : Noise()
{
lastOutput = 0.0;
lastOutput = (MY_FLOAT) 0.0;
howOften = subSample-1;
counter = subSample-1;
}