Changeset - r1182:f2bc7fe635b0
[Not reviewed]
master
0 1 0
bjarni - 19 years ago 2005-01-26 18:18:00
bjarni@openttd.org
(svn r1684) - Fix: [autoreplace] made sure that planes only show planes in replace GUI and helicopters only show helicopters
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
vehicle_gui.c
Show inline comments
 
@@ -500,7 +500,7 @@ static void SetupScrollStuffForReplaceWi
 
				engine_id = AIRCRAFT_ENGINES_INDEX;
 
				do {
 
					if (HASBIT(e->player_avail, _local_player)) {
 
						if ( (subtype && AircraftVehInfo(engine_id)->subtype) || (!(subtype) && !AircraftVehInfo(engine_id)->subtype) ) {
 
						if (HASBIT(subtype, 0) == HASBIT(AircraftVehInfo(engine_id)->subtype, 0)) {
 
							count2++;
 
							if (sel[1]==0)  selected_id[1] = engine_id;
 
							sel[1]--;
 
@@ -647,7 +647,7 @@ static void DrawEngineArrayInReplaceWind
 
						}
 
						sel[0]--;
 
					}
 
					if ( ((subtype && AircraftVehInfo(engine_id)->subtype) || (!(subtype) && !AircraftVehInfo(engine_id)->subtype))
 
					if ( (HASBIT(subtype, 0) == HASBIT(AircraftVehInfo(engine_id)->subtype, 0))
 
						&& HASBIT(e->player_avail, _local_player) ) {
 
						if (sel[1]==0) selected_id[1] = engine_id;
 
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0)) {
0 comments (0 inline, 0 general)