Changeset - r22339:80cd128a4dcb
[Not reviewed]
master
0 1 0
frosch - 8 years ago 2016-04-02 16:02:22
frosch@openttd.org
(svn r27534) -Fix [FS#6435]: [NewGRF] Station spritelayouts did not accept the var10 flag for the palette.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf_commons.h
Show inline comments
 
@@ -49,7 +49,7 @@ enum TileLayoutFlags {
 
	TLF_SPRITE_VAR10      = 0x40,   ///< Resolve sprite with a specific value in variable 10.
 
	TLF_PALETTE_VAR10     = 0x80,   ///< Resolve palette with a specific value in variable 10.
 

	
 
	TLF_KNOWN_FLAGS       = 0x7F,   ///< Known flags. Any unknown set flag will disable the GRF.
 
	TLF_KNOWN_FLAGS       = 0xFF,   ///< Known flags. Any unknown set flag will disable the GRF.
 

	
 
	/** Flags which are still required after loading the GRF. */
 
	TLF_DRAWING_FLAGS     = ~TLF_CUSTOM_PALETTE,
0 comments (0 inline, 0 general)