# HG changeset patch # User nemo # Date 1321038805 18000 # Node ID 53e0d825cc253ae2e7bc78a003dee4b5ae066a16 # Parent c1aa6a3c84a78f00a7973a2d9066cb2e0446ae77 flip some flames diff -r c1aa6a3c84a7 -r 53e0d825cc25 hedgewars/uGearsRender.pas --- a/hedgewars/uGearsRender.pas Fri Nov 11 14:05:39 2011 -0500 +++ b/hedgewars/uGearsRender.pas Fri Nov 11 14:13:25 2011 -0500 @@ -981,7 +981,9 @@ gtDynamite: DrawSprite2(sprDynamite, x - 16, y - 25, Gear^.Tag and 1, Gear^.Tag shr 1); gtClusterBomb: DrawRotated(sprClusterBomb, x, y, 0, Gear^.DirAngle); gtCluster: DrawSprite(sprClusterParticle, x - 8, y - 8, 0); - gtFlame: DrawTextureF(SpritesData[sprFlame].Texture, 2 / (Gear^.Tag mod 3 + 2), x, y, (GameTicks shr 7 + LongWord(Gear^.Tag)) mod 8, 1, 16, 16); + gtFlame: if Gear^.Tag and 1 = 0 then + DrawTextureF(SpritesData[sprFlame].Texture, 2 / (Gear^.Tag mod 3 + 2), x, y, (GameTicks shr 7 + LongWord(Gear^.Tag)) mod 8, 1, 16, 16) + else DrawTextureF(SpritesData[sprFlame].Texture, 2 / (Gear^.Tag mod 3 + 2), x, y, (GameTicks shr 7 + LongWord(Gear^.Tag)) mod 8, -1, 16, 16); gtParachute: begin DrawSprite(sprParachute, x - 24, y - 48, 0); DrawAltWeapon(Gear, x + 1, y - 3)