diff options
author | dominik <dominik@openttd.org> | 2004-08-25 09:23:55 +0000 |
---|---|---|
committer | dominik <dominik@openttd.org> | 2004-08-25 09:23:55 +0000 |
commit | ea2d013ff0b50090d6bbc7ca4bd70253fee2322b (patch) | |
tree | bb9683da2c271a5323e24fcd6ae9913d91984109 | |
parent | 855aa8beed41a93bd8a4aafcdd1660d3ceb7398b (diff) | |
download | openttd-ea2d013ff0b50090d6bbc7ca4bd70253fee2322b.tar.xz |
(svn r139) Added MarkWholeScreenDirty() on switch player screen
Changed "Max income" string and "station spread patch" string
-rw-r--r-- | lang/english.txt | 4 | ||||
-rw-r--r-- | misc_gui.c | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lang/english.txt b/lang/english.txt index 047c15161..15d7ec4dd 100644 --- a/lang/english.txt +++ b/lang/english.txt @@ -981,7 +981,7 @@ STR_CONFIG_PATCHES_AUTORENEW_MONEY :{LTBLUE}Autorenew minimum needed money for STR_CONFIG_PATCHES_ERRMSG_DURATION :{LTBLUE}Duration of error message: {ORANGE}{STRING} STR_CONFIG_PATCHES_INVISIBLE_TREES :{LTBLUE}Invisible trees (with transparent buildings): {ORANGE}{STRING} STR_CONFIG_PATCHES_SNOWLINE_HEIGHT :{LTBLUE}Snow line height: {ORANGE}{STRING} -STR_CONFIG_PATCHES_STATION_SPREAD :{LTBLUE}Max station spread: {ORANGE}{STRING} +STR_CONFIG_PATCHES_STATION_SPREAD :{LTBLUE}Max station spread: {ORANGE}{STRING} {RED}Warning: High setting slows game STR_CONFIG_PATCHES_SERVICEATHELIPAD :{LTBLUE}Service helicopters at helipads automatically: {ORANGE}{STRING} STR_CONFIG_PATCHES_MAX_TRAINS :{LTBLUE}Max trains per player: {ORANGE}{STRING} @@ -2543,7 +2543,7 @@ STR_PERFORMANCE_DETAIL_TOTAL :{BLACK}Total: ############ End of order list STR_PERFORMANCE_DETAIL_VEHICLES_TIP :{BLACK}Amount of vehicles. This includes road vehicles, trains, ships and aircraft. STR_PERFORMANCE_DETAIL_STATIONS_TIP :{BLACK}Amount of station parts. Every part of a station (e.g. train station, bus stop, airport) is counted, even if they are connected to one station. -STR_PERFORMANCE_DETAIL_MIN_PROFIT_TIP :{BLACK}The minimum profit of all the vehicles that are more than 2 years old. +STR_PERFORMANCE_DETAIL_MIN_PROFIT_TIP :{BLACK}The profit of the vehicle with the lowest income (of all vehicles older than 2 years) STR_PERFORMANCE_DETAIL_MIN_INCOME_TIP :{BLACK}Amount of cash made in the month with the lowest profit of the past 12 quarters STR_PERFORMANCE_DETAIL_MAX_INCOME_TIP :{BLACK}Amount of cash made in the month with the highest profit of the past 12 quarters STR_PERFORMANCE_DETAIL_DELIVERED_TIP :{BLACK}Units of cargo delivered in the past four quarters. diff --git a/misc_gui.c b/misc_gui.c index 8180f1998..bfdc81ae7 100644 --- a/misc_gui.c +++ b/misc_gui.c @@ -1338,6 +1338,7 @@ int32 ClickChangePlayerCheat(int32 p1, int32 p2) if (_players[p1].is_active) { _local_player = p1; + MarkWholeScreenDirty(); return _local_player; } p1 += p2; |