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 | 73e1f389347c728fec53f18ae95bdf881d0b931d (patch) | |
tree | d79d896d984375509deb60321c466a0282a137a5 | |
parent | e59a6b31237d932c250d05275065f7e3da615b8a (diff) | |
download | openttd-73e1f389347c728fec53f18ae95bdf881d0b931d.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 */ |