Take radius into account when drawing gtGenericFaller
authorWuzzy <Wuzzy2@mail.ru>
Thu, 15 Mar 2018 02:08:07 +0100
changeset 13213 1ac1f5a91ec0
parent 13212 e9e4cc867b6e
child 13214 9c81e34f1933
Take radius into account when drawing gtGenericFaller
hedgewars/uGearsRender.pas
--- a/hedgewars/uGearsRender.pas	Wed Mar 14 23:55:13 2018 +0100
+++ b/hedgewars/uGearsRender.pas	Thu Mar 15 02:08:07 2018 +0100
@@ -1554,7 +1554,7 @@
             gtDuck: DrawSpriteRotatedF(sprDuck, x, y, 1, Gear^.Tag, 
                     // replace with something based on dx/dy?
                     Gear^.DirAngle + 10-round(20 * abs(1 - (RealTicks mod round(0.1/max(0.00005,cWindSpeedf))) / round(0.05/max(0.00005,cWindSpeedf))) ));
-            gtGenericFaller: DrawCircle(x, y, 3, 3, $FF, $00, $00, $FF);  // debug
+            gtGenericFaller: DrawCircle(x, y, max(3, Gear^.Radius), 3, $FF, $00, $00, $FF); // debug
          end;
     if Gear^.State and gstFrozen <> 0 then untint
 end;