diff options
author | peter1138 <peter1138@openttd.org> | 2007-04-18 07:22:53 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-04-18 07:22:53 +0000 |
commit | 4b7c59fce15d7e861b6f3115a3117eee1a38d778 (patch) | |
tree | f6ae671b7b56b68b4c9d726098b1da35f9e9d4bf | |
parent | d6651c17415eaf29062177a2a40ef02afad0b083 (diff) | |
download | openttd-4b7c59fce15d7e861b6f3115a3117eee1a38d778.tar.xz |
(svn r9666) -Fix (r9651): end of data / column flags were reversed
-rw-r--r-- | src/smallmap_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp index bee2ae9d1..2950d09f1 100644 --- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -52,10 +52,10 @@ static bool _smallmap_show_towns = true; /** 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 { |