(svn r3186) Unnecessary casts and truncation

This commit is contained in:
tron
2005-11-15 09:05:16 +00:00
parent 8a3587fa28
commit ca1dfe94d2
4 changed files with 4 additions and 4 deletions

View File

@@ -1056,7 +1056,7 @@ static void DrawTile_TunnelBridge(TileInfo *ti)
AddSortableSpriteToDraw(image+1, ti->x + 15, ti->y + 15, 1, 1, 8, (byte)ti->z);
// draw bridge?
} else if ((byte)ti->map5 & 0x80) {
} else if (ti->map5 & 0x80) {
RailType rt;
int base_offset;