fix spelling of "Divider" that shows in map editor

also changed the corresponding variable names
This commit is contained in:
andy5995
2017-02-15 13:47:53 -06:00
parent 4818612404
commit 9534943a9c
4 changed files with 13 additions and 13 deletions

View File

@@ -561,8 +561,8 @@ void Program::shiftDown() {
}
void Program::randomizeMapHeights(bool withReset,int minimumHeight, int maximumHeight, int chanceDevider, int smoothRecursions) {
if(map) map->randomizeHeights(withReset, minimumHeight, maximumHeight, chanceDevider, smoothRecursions);
void Program::randomizeMapHeights(bool withReset,int minimumHeight, int maximumHeight, int chanceDivider, int smoothRecursions) {
if(map) map->randomizeHeights(withReset, minimumHeight, maximumHeight, chanceDivider, smoothRecursions);
}
void Program::randomizeFactions() {