mirror of https://github.com/OpenTTD/OpenTTD
(svn r15772) -Fix (r15767): MSVC can't find the right function anymore because the return value in the header was not updated.
parent
5933a07a86
commit
096debebe7
|
@ -58,6 +58,6 @@ struct DrawBuildingsTileStruct {
|
||||||
/** Iterate through all DrawTileSeqStructs in DrawTileSprites. */
|
/** Iterate through all DrawTileSeqStructs in DrawTileSprites. */
|
||||||
#define foreach_draw_tile_seq(idx, list) for (idx = list; ((byte) idx->delta_x) != 0x80; idx++)
|
#define foreach_draw_tile_seq(idx, list) for (idx = list; ((byte) idx->delta_x) != 0x80; idx++)
|
||||||
|
|
||||||
void SkipSpriteData(byte type, uint16 num);
|
bool SkipSpriteData(byte type, uint16 num);
|
||||||
|
|
||||||
#endif /* SPRITE_H */
|
#endif /* SPRITE_H */
|
||||||
|
|
Loading…
Reference in New Issue