mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-10 00:11:31 +00:00
(svn r25473) -Fix: uninitialised warning
This commit is contained in:
parent
f980d1a43c
commit
3fe1e9176d
@ -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