(svn r1091) Fix: Finally station names use 100% the correct color in transparent mode

This commit is contained in:
dominik
2004-12-14 20:54:01 +00:00
parent b6c74c1c20
commit af9dc1f817
3 changed files with 10 additions and 16 deletions

5
gfx.h
View File

@@ -111,4 +111,9 @@ enum { NUM_SPRITES = 0x3500 }; // 1500 + space for custom GRF sets
extern byte _palettes[4][256 * 3];
VARDEF byte _cur_palette[768];
typedef enum StringColorFlags {
IS_PALETTE_COLOR = 0x100, // color value is already a real palette color index, not an index of a StringColor
} StringColorFlags;
#endif