diff -r 93429d8f6b3f -r c96889bf5796 hedgewars/uCommandHandlers.pas --- a/hedgewars/uCommandHandlers.pas Tue Feb 05 02:13:04 2019 +0100 +++ b/hedgewars/uCommandHandlers.pas Tue Feb 05 02:18:13 2019 +0100 @@ -732,7 +732,10 @@ procedure chZoomReset(var s: shortstring); begin s:= s; // avoid compiler hint - ZoomValue:= UserZoom; + if (LocalMessage and gmPrecise <> 0) then + ZoomValue:= cDefaultZoomLevel + else + ZoomValue:= UserZoom; end; procedure chMapGen(var s: shortstring);