Janilabo

CTS

Mar 29th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.33 KB | None | 0 0
  1. procedure A;
  2. begin
  3.   WriteLn('CTS: ' + IntToSTr(GetColorToleranceSpeed) + ' [A]');
  4. end;
  5.  
  6. procedure B;
  7. begin
  8.   WriteLn('CTS: ' + IntToStr(GetColorToleranceSpeed) + ' [B]');
  9.   ColorToleranceSpeed(2);
  10.   A;
  11.   ColorToleranceSpeed(1);
  12. end;
  13.  
  14. begin
  15.   B;
  16.   WriteLn('CTS: ' + IntToStr(GetColorToleranceSpeed) + ' [C]'); // "C"
  17. end.
Advertisement
Add Comment
Please, Sign In to add comment