mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r25473) -Fix: uninitialised warning
This commit is contained in:
parent
ba3eda7c1e
commit
b0e63f55ba
@ -282,7 +282,7 @@ ParagraphLayout::Line *ParagraphLayout::nextLine(int max_width)
|
||||
Line *l = new Line();
|
||||
|
||||
const WChar *begin = this->buffer;
|
||||
WChar *last_space;
|
||||
WChar *last_space = NULL;
|
||||
const WChar *last_char = begin;
|
||||
int width = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user