Mercurial > hg > openttd
changeset 6485:f4a47140d652 draft
(svn r9666) -Fix (r9651): end of data / column flags were reversed
author | peter1138 <peter1138@openttd.org> |
---|---|
date | Wed, 18 Apr 2007 07:22:53 +0000 |
parents | 17fdaec13730 |
children | 12262d0c44ed |
files | src/smallmap_gui.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -52,10 +52,10 @@ /** Macro for ordinary entry of LegendAndColor */ #define MK(a,b) {a, b, false, false} /** Macro for end of list marker in arrays of LegendAndColor */ -#define MKEND() {0, STR_NULL, false, true} +#define MKEND() {0, STR_NULL, true, false} /** Macro for break marker in arrays of LegendAndColor. * It will have valid data, though */ -#define MS(a,b) {a, b, true, false} +#define MS(a,b) {a, b, false, true} /** Structure for holding relevant data for legends in small map */ struct LegendAndColour {