File diff r16430:b3f65f9bc976 → r16431:ec558deca9d7
src/build_vehicle_gui.cpp
Show inline comments
 
@@ -839,13 +839,13 @@ void DrawEngineList(VehicleType type, in
 

	
 
	/* Obligatory sanity checks! */
 
	assert((uint)type < lengthof(sprite_widths));
 
	assert_compile(lengthof(sprite_y_offsets) == lengthof(sprite_widths));
 
	assert(max <= eng_list->Length());
 

	
 
	bool rtl = _dynlang.text_dir == TD_RTL;
 
	bool rtl = _current_text_dir == TD_RTL;
 
	int step_size = GetEngineListHeight(type);
 
	int sprite_width = sprite_widths[type];
 

	
 
	int sprite_x        = (rtl ? r - sprite_width / 2 : l + sprite_width / 2) - 1;
 
	int sprite_y_offset = sprite_y_offsets[type] + step_size / 2;