(svn r17271) -Fix: SetFill sometimes used 1/0 when it should be using true/false

This commit is contained in:
rubidium
2009-08-23 19:03:09 +00:00
parent 8fae313f70
commit aca7ba714a
25 changed files with 233 additions and 233 deletions

View File

@@ -473,9 +473,9 @@ static const NWidgetPart _nested_errmsg_widgets[] = {
NWidget(NWID_VERTICAL),
NWidget(NWID_HORIZONTAL),
NWidget(WWT_EMPTY, COLOUR_RED, EMW_FACE), SetMinimalSize(1, 1), SetFill(false, false),
NWidget(NWID_SPACER), SetFill(1, 0),
NWidget(NWID_SPACER), SetFill(true, false),
EndContainer(),
NWidget(NWID_SPACER), SetFill(1, 1), SetResize(0, 1),
NWidget(NWID_SPACER), SetFill(true, true), SetResize(0, 1),
EndContainer(),
EndContainer(),
};