diff -r bd97cc28b569 -r fbb3eab0e186 src/settings_gui.cpp --- a/src/settings_gui.cpp Sun Mar 11 13:57:34 2007 +0000 +++ b/src/settings_gui.cpp Sun Mar 11 14:02:43 2007 +0000 @@ -321,6 +321,7 @@ { 0, 1, 1, STR_6834_AT_END_OF_LINE_AND_AT_STATIONS}, { 0, 1, 1, STR_6836_OFF}, { 0, 2, 1, STR_6839_PERMISSIVE}, + { 0, 2, 1, STR_6820_LOW}, }; static inline bool GetBitAndShift(uint32 *b) @@ -349,12 +350,13 @@ * P: Train reversing (0 = end of line + stations, 1 = end of line) * Q: disasters * R: area restructuring (0 = permissive, 2 = hostile) + * S: Economic Growth */ static const int16 _default_game_diff[3][GAME_DIFFICULTY_NUM] = { /* - A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R*/ - {2, 2, 1, 3, 300, 2, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0}, //easy - {4, 1, 1, 2, 150, 3, 1, 3, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1}, //medium - {7, 0, 2, 2, 100, 4, 1, 3, 2, 2, 0, 2, 3, 2, 1, 1, 1, 2}, //hard + A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S*/ + {2, 2, 1, 3, 300, 2, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 2}, //easy + {4, 1, 1, 2, 150, 3, 1, 3, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1}, //medium + {7, 0, 2, 2, 100, 4, 1, 3, 2, 2, 0, 2, 3, 2, 1, 1, 1, 2, 0}, //hard }; void SetDifficultyLevel(int mode, GameOptions *gm_opt)