Skip to content

Commit

Permalink
Merge pull request #100 from arash28134/master
Browse files Browse the repository at this point in the history
Fix example code in Cpp/README.md
  • Loading branch information
Auburn committed Sep 16, 2022
2 parents 622ae7e + dd388a8 commit 5923df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FastNoiseLite noise;
noise.SetNoiseType(FastNoiseLite::NoiseType_OpenSimplex2);
// Gather noise data
std::vector<float> noiseData(128 * 128)
std::vector<float> noiseData(128 * 128);
int index = 0;
for (int y = 0; y < 128; y++)
Expand Down

0 comments on commit 5923df5

Please sign in to comment.