Changeset - r16127:bc7a0303d95c
[Not reviewed]
master
0 2 0
terkhen - 14 years ago 2010-09-20 19:15:31
terkhen@openttd.org
(svn r20833) -Fix (r20832): Remove a warning.
2 files changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/genworld.h
Show inline comments
 
@@ -33,9 +33,9 @@ enum GenWorldMode {
 
	GWM_HEIGHTMAP = 3, ///< Generate a newgame from a heightmap
 
};
 

	
 
static const int CUSTOM_SEA_LEVEL_NUMBER_DIFFICULTY = 4; ///< Value for custom sea level in difficulty settings.
 
static const int CUSTOM_SEA_LEVEL_MIN_PERCENTAGE = 1;    ///< Minimum percentage a user can specify for custom sea level.
 
static const int CUSTOM_SEA_LEVEL_MAX_PERCENTAGE = 90;   ///< Maximum percentage a user can specify for custom sea level.
 
static const uint CUSTOM_SEA_LEVEL_NUMBER_DIFFICULTY = 4; ///< Value for custom sea level in difficulty settings.
 
static const uint CUSTOM_SEA_LEVEL_MIN_PERCENTAGE = 1;    ///< Minimum percentage a user can specify for custom sea level.
 
static const uint CUSTOM_SEA_LEVEL_MAX_PERCENTAGE = 90;   ///< Maximum percentage a user can specify for custom sea level.
 

	
 
typedef void GWDoneProc();  ///< Procedure called when the genworld process finishes
 
typedef void GWAbortProc(); ///< Called when genworld is aborted
src/tgp.cpp
Show inline comments
 
@@ -848,7 +848,7 @@ static void HeightMapSmoothSlopes(height
 
static void HeightMapNormalize()
 
{
 
	int sea_level_setting = _settings_game.difficulty.quantity_sea_lakes;
 
	const amplitude_t water_percent = sea_level_setting != CUSTOM_SEA_LEVEL_NUMBER_DIFFICULTY ? _water_percent[sea_level_setting] : _settings_game.game_creation.custom_sea_level * 1024 / 100;
 
	const amplitude_t water_percent = sea_level_setting != (int)CUSTOM_SEA_LEVEL_NUMBER_DIFFICULTY ? _water_percent[sea_level_setting] : _settings_game.game_creation.custom_sea_level * 1024 / 100;
 
	const height_t h_max_new = I2H(_max_height[_settings_game.difficulty.terrain_type]);
 
	const height_t roughness = 7 + 3 * _settings_game.game_creation.tgen_smoothness;
 

	
0 comments (0 inline, 0 general)