Changeset - r4667:bc488b1e7a8f
[Not reviewed]
master
0 1 0
bjarni - 18 years ago 2006-09-28 19:56:29
bjarni@openttd.org
(svn r6561) -Fix r6513: [depot window] fixed an off by one error, that caused planes and ships to be drawn one pixel lower for each row
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
depot_gui.c
Show inline comments
 
@@ -881,7 +881,7 @@ void ShowDepotWindow(TileIndex tile, byt
 
				w->vscroll.cap = 3;
 
				w->hscroll.cap = 3;
 
				w->resize.step_width = 90;
 
				w->resize.step_height = 24;
 
				w->resize.step_height = 23;
 
				break;
 

	
 
			case VEH_Aircraft:
 
@@ -889,7 +889,7 @@ void ShowDepotWindow(TileIndex tile, byt
 
				w->vscroll.cap = 3;
 
				w->hscroll.cap = 4;
 
				w->resize.step_width = 74;
 
				w->resize.step_height = 24;
 
				w->resize.step_height = 23;
 
				break;
 

	
 
			default: NOT_REACHED();
0 comments (0 inline, 0 general)