1
0
Fork 0

(svn r9666) -Fix (r9651): end of data / column flags were reversed

release/0.6
peter1138 2007-04-18 07:22:53 +00:00
parent d6651c1741
commit 4b7c59fce1
1 changed files with 2 additions and 2 deletions

View File

@ -52,10 +52,10 @@ static bool _smallmap_show_towns = true;
/** Macro for ordinary entry of LegendAndColor */ /** Macro for ordinary entry of LegendAndColor */
#define MK(a,b) {a, b, false, false} #define MK(a,b) {a, b, false, false}
/** Macro for end of list marker in arrays of LegendAndColor */ /** 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. /** Macro for break marker in arrays of LegendAndColor.
* It will have valid data, though */ * 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 */ /** Structure for holding relevant data for legends in small map */
struct LegendAndColour { struct LegendAndColour {