1
0

OctavedNoise: Unshadowed a local variable.

This commit is contained in:
Mattes D 2014-11-27 22:44:02 +01:00
parent a6ed5cb1d8
commit 9f24c0c4da

View File

@ -124,8 +124,9 @@ public:
}
// Generate the first octave directly into array:
const cOctave & FirstOctave = m_Octaves.front();
int ArrayCount = a_SizeX * a_SizeY * a_SizeZ;
{
const cOctave & FirstOctave = m_Octaves.front();
FirstOctave.m_Noise.Generate3D(
a_Workspace, a_SizeX, a_SizeY, a_SizeZ,
a_StartX * FirstOctave.m_Frequency, a_EndX * FirstOctave.m_Frequency,
@ -137,6 +138,7 @@ public:
{
a_Array[i] = a_Workspace[i] * Amplitude;
}
}
// Add each octave:
for (auto itr = m_Octaves.cbegin() + 1, end = m_Octaves.cend(); itr != end; ++itr)