hedgewars/uLandGraphics.pas
changeset 13463 f1d349a52bc7
parent 13405 4c813650fe17
child 13567 8f9b84d6991d
--- a/hedgewars/uLandGraphics.pas	Tue Jul 10 17:11:31 2018 +0200
+++ b/hedgewars/uLandGraphics.pas	Tue Jul 10 18:00:04 2018 +0200
@@ -236,12 +236,12 @@
     setCurrentHog:
         for i:= fromPix to toPix do
             begin
-            Land[y, i]:= Land[y, i] or lfCurrentHog
+            Land[y, i]:= Land[y, i] or lfCurHogCrate
             end;
     removeCurrentHog:
         for i:= fromPix to toPix do
             begin
-            Land[y, i]:= Land[y, i] and lfNotCurrentMask;
+            Land[y, i]:= Land[y, i] and lfNotCurHogCrate;
             end;
     end;
 end;