Changeset - r20962:6cec9a12c247
[Not reviewed]
master
0 1 0
rubidium - 11 years ago 2013-11-18 19:35:06
rubidium@openttd.org
(svn r26036) -Fix [FS#5809]: multi line text was handled incorrectly causing glitches
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/gfx_layout.cpp
Show inline comments
 
@@ -569,7 +569,7 @@ static FallbackParagraphLayout *GetParag
 
 * @tparam T The type of layouter we want.
 
 */
 
template <typename T>
 
static inline void GetLayouter(Layouter::LineCacheItem &line, const char *str, FontState state)
 
static inline void GetLayouter(Layouter::LineCacheItem &line, const char *&str, FontState &state)
 
{
 
	if (line.buffer != NULL) free(line.buffer);
 

	
0 comments (0 inline, 0 general)