--- a/hedgewars/uLandGraphics.pas Sun Jan 05 00:46:26 2014 +0400
+++ b/hedgewars/uLandGraphics.pas Sun Jan 05 10:54:03 2014 +0400
@@ -344,11 +344,11 @@
begin
if not doSet and isCurrent then
FillRoundInLandFT(X, Y, Radius, setNotCurrentMask)
-else if not doSet and not IsCurrent then
+else if not doSet and (not IsCurrent) then
FillRoundInLandFT(X, Y, Radius, changePixelSetNotCurrent)
else if doSet and IsCurrent then
FillRoundInLandFT(X, Y, Radius, setCurrentHog)
-else if doSet and not IsCurrent then
+else if doSet and (not IsCurrent) then
FillRoundInLandFT(X, Y, Radius, changePixelNotSetNotCurrent);
end;