Changeset - r11878:56346e40ae7a
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-05-12 19:59:33
rubidium@openttd.org
(svn r16283) -Fix [FS#2890]: news ticker truncated too early
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/statusbar_gui.cpp
Show inline comments
 
@@ -57,7 +57,7 @@ static bool DrawScrollingStatusText(cons
 
	DrawPixelInfo *old_dpi = _cur_dpi;
 
	_cur_dpi = &tmp_dpi;
 

	
 
	int x = DrawString(pos, pos + width, 0, buffer, TC_LIGHT_BLUE);
 
	int x = DrawString(pos, INT16_MAX, 0, buffer, TC_LIGHT_BLUE);
 
	_cur_dpi = old_dpi;
 

	
 
	return x > 0;
0 comments (0 inline, 0 general)