diff -r 149416b948fc -r d4de36b3801a hedgewars/CCHandlers.inc --- a/hedgewars/CCHandlers.inc Thu Jun 24 01:08:57 2010 +0200 +++ b/hedgewars/CCHandlers.inc Sat Jun 26 04:36:04 2010 +0200 @@ -815,7 +815,11 @@ procedure chZoomOut(var s: shortstring); begin s:= s; // avoid compiler hint +{$IFDEF IPHONEOS} + if ZoomValue > 0.5 then +{$ELSE} if ZoomValue > 1.0 then +{$ENDIF} ZoomValue:= ZoomValue - 0.20; end;