hedgewars/uCommandHandlers.pas
changeset 14678 c96889bf5796
parent 14677 93429d8f6b3f
child 14679 4eaeba349179
--- 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);