Changeset - r4672:3d31488f1632
[Not reviewed]
master
0 2 0
bjarni - 18 years ago 2006-09-29 10:54:59
bjarni@openttd.org
(svn r6569) -Fix r6562: fixed incorrect drawing of road vehicle depot
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
misc_gui.c
Show inline comments
 
@@ -1876,7 +1876,7 @@ void ShowCheatWindow(void)
 
 * @param horizontal Tells how far to the right the widgets should be moved (note: negative moves left)
 
 * @param vertical Tells how far down the widgets should be moved (note: negative moves up)
 
*/
 
void ResizeWindowWidgets(Window *w, const byte *resizearray, byte length, byte horizontal, byte vertical)
 
void ResizeWindowWidgets(Window *w, const byte *resizearray, int16 length, byte horizontal, int16 vertical)
 
{
 
	byte i;
 

	
resize_window_widgets.h
Show inline comments
 
@@ -26,6 +26,6 @@ enum {
 
	WIDGET_MOVE_DOWN_STRETCH_RIGHT = WIDGET_MOVE_DOWN  | WIDGET_STRETCH_RIGHT,
 
};
 

	
 
void ResizeWindowWidgets(Window *w, const byte *resizearray, byte length, byte horizontal, byte vertical);
 
void ResizeWindowWidgets(Window *w, const byte *resizearray, int16 length, byte horizontal, int16 vertical);
 

	
 
#endif
0 comments (0 inline, 0 general)