Changeset - r20458:cd081e43ced8
[Not reviewed]
master
0 1 0
rubidium - 11 years ago 2013-06-25 20:48:12
rubidium@openttd.org
(svn r25473) -Fix: uninitialised warning
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/gfx_layout.cpp
Show inline comments
 
@@ -282,7 +282,7 @@ ParagraphLayout::Line *ParagraphLayout::
 
	Line *l = new Line();
 

	
 
	const WChar *begin = this->buffer;
 
	WChar *last_space;
 
	WChar *last_space = NULL;
 
	const WChar *last_char = begin;
 
	int width = 0;
 

	
0 comments (0 inline, 0 general)