diff options
author | Patric Stout <truebrain@openttd.org> | 2021-03-24 20:51:41 +0100 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-03-26 12:22:32 +0100 |
commit | 45c2c29c35afeb4116ff8fb3393ddc67ea1708da (patch) | |
tree | 64c24df6f75024b394506f091285174206562ffa /src/widgets | |
parent | 422e132845255264314cd79aa14361d0df0905d7 (diff) | |
download | openttd-45c2c29c35afeb4116ff8fb3393ddc67ea1708da.tar.xz |
Add: allow setting the highest mountain for heightmaps
It will add some slack to the map height limit if that was set
to auto.
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/genworld_widget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/widgets/genworld_widget.h b/src/widgets/genworld_widget.h index 40e803ba7..6644dc1aa 100644 --- a/src/widgets/genworld_widget.h +++ b/src/widgets/genworld_widget.h @@ -26,6 +26,10 @@ enum GenerateLandscapeWidgets { WID_GL_GENERATE_BUTTON, ///< 'Generate' button. + WID_GL_HEIGHTMAP_HEIGHT_DOWN, ///< Decrease heightmap highest mountain + WID_GL_HEIGHTMAP_HEIGHT_TEXT, ///< Max. heightmap highest mountain + WID_GL_HEIGHTMAP_HEIGHT_UP, ///< Increase max. heightmap highest mountain + WID_GL_START_DATE_DOWN, ///< Decrease start year. WID_GL_START_DATE_TEXT, ///< Start year. WID_GL_START_DATE_UP, ///< Increase start year. |