diff options
author | rubidium <rubidium@openttd.org> | 2010-06-19 16:42:02 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-06-19 16:42:02 +0000 |
commit | 876eb5ee0b518240a416f6c288b9b4445e45051d (patch) | |
tree | d0fd125f649761dc84d8ef4d55b0adf1a5bc6b61 /src/network | |
parent | 3e35018f97a29007f865a589452872df1a909d90 (diff) | |
download | openttd-876eb5ee0b518240a416f6c288b9b4445e45051d.tar.xz |
(svn r19998) -Codechange: Unify the order of ship and plane icon in network-lobby with the rest of the game (frosch)
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_gui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/network/network_gui.cpp b/src/network/network_gui.cpp index db071c28e..ba2cc25f0 100644 --- a/src/network/network_gui.cpp +++ b/src/network/network_gui.cpp @@ -1606,16 +1606,16 @@ struct NetworkLobbyWindow : public Window { SetDParam(0, this->company_info[this->company].num_vehicle[NETWORK_VEH_TRAIN]); SetDParam(1, this->company_info[this->company].num_vehicle[NETWORK_VEH_LORRY]); SetDParam(2, this->company_info[this->company].num_vehicle[NETWORK_VEH_BUS]); - SetDParam(3, this->company_info[this->company].num_vehicle[NETWORK_VEH_PLANE]); - SetDParam(4, this->company_info[this->company].num_vehicle[NETWORK_VEH_SHIP]); + SetDParam(3, this->company_info[this->company].num_vehicle[NETWORK_VEH_SHIP]); + SetDParam(4, this->company_info[this->company].num_vehicle[NETWORK_VEH_PLANE]); DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, STR_NETWORK_GAME_LOBBY_VEHICLES); // vehicles y += FONT_HEIGHT_NORMAL; SetDParam(0, this->company_info[this->company].num_station[NETWORK_VEH_TRAIN]); SetDParam(1, this->company_info[this->company].num_station[NETWORK_VEH_LORRY]); SetDParam(2, this->company_info[this->company].num_station[NETWORK_VEH_BUS]); - SetDParam(3, this->company_info[this->company].num_station[NETWORK_VEH_PLANE]); - SetDParam(4, this->company_info[this->company].num_station[NETWORK_VEH_SHIP]); + SetDParam(3, this->company_info[this->company].num_station[NETWORK_VEH_SHIP]); + SetDParam(4, this->company_info[this->company].num_station[NETWORK_VEH_PLANE]); DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, STR_NETWORK_GAME_LOBBY_STATIONS); // stations y += FONT_HEIGHT_NORMAL; |