Changeset - r6042:e8caba35ad0a
[Not reviewed]
master
0 1 0
KUDr - 18 years ago 2007-02-17 10:21:48
kudr@openttd.org
(svn r8768) -Fix (r8767): VC8 compilation failed 'warning C4146: unary minus operator applied to unsigned type, result still unsigned'
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/airport_gui.cpp
Show inline comments
 
@@ -174,7 +174,7 @@ static void BuildAirportPickerWndProc(Wi
 
		airport = GetAirport(_selected_airport_type);
 
		SetTileSelectSize(airport->size_x, airport->size_y);
 

	
 
		uint rad = _patches.modified_catchment ? airport->catchment : 4;
 
		int rad = _patches.modified_catchment ? airport->catchment : 4;
 

	
 
		if (_station_show_coverage) SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad);
 

	
0 comments (0 inline, 0 general)