diff options
author | yexo <yexo@openttd.org> | 2009-03-19 23:03:53 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2009-03-19 23:03:53 +0000 |
commit | 096debebe713c284c084dc40a784ea40dba66157 (patch) | |
tree | d79d896d984375509deb60321c466a0282a137a5 | |
parent | 5933a07a8622baac6f9372820b5e854d9d072f05 (diff) | |
download | openttd-096debebe713c284c084dc40a784ea40dba66157.tar.xz |
(svn r15772) -Fix (r15767): MSVC can't find the right function anymore because the return value in the header was not updated.
-rw-r--r-- | src/sprite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sprite.h b/src/sprite.h index 822cc4809..072e62317 100644 --- a/src/sprite.h +++ b/src/sprite.h @@ -58,6 +58,6 @@ struct DrawBuildingsTileStruct { /** Iterate through all DrawTileSeqStructs in DrawTileSprites. */ #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 */ |