Changeset - r6485:80a28d90a166
[Not reviewed]
master
0 1 0
peter1138 - 18 years ago 2007-04-18 07:22:53
peter1138@openttd.org
(svn r9666) -Fix (r9651): end of data / column flags were reversed
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/smallmap_gui.cpp
Show inline comments
 
@@ -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 {
0 comments (0 inline, 0 general)