hedgewars/CCHandlers.inc
changeset 2373 e3989519731b
parent 2372 f3e7a066c2b8
child 2379 d62b1f224982
equal deleted inserted replaced
2372:f3e7a066c2b8 2373:e3989519731b
   685 if ZoomValue < 3.0 then ZoomValue:= ZoomValue + 0.25;
   685 if ZoomValue < 3.0 then ZoomValue:= ZoomValue + 0.25;
   686 end;
   686 end;
   687 
   687 
   688 procedure chZoomOut(var s: shortstring);
   688 procedure chZoomOut(var s: shortstring);
   689 begin
   689 begin
   690 if ZoomValue > 0.5 then ZoomValue:= ZoomValue - 0.25;
   690 if ZoomValue > 1.0 then ZoomValue:= ZoomValue - 0.25;
   691 end;
   691 end;
   692 
   692 
   693 procedure chChat(var s: shortstring);
   693 procedure chChat(var s: shortstring);
   694 begin
   694 begin
   695 GameState:= gsChat;
   695 GameState:= gsChat;