home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / bor_tips / ti177.asc < prev    next >
Encoding:
Text File  |  1988-04-18  |  1009 b   |  33 lines

  1. PRODUCT : TURBO GAMEWORKS     NUMBER : 177
  2. VERSION : 1.00A
  3.      OS : PC-DOS
  4.    DATE : May 21, 1986
  5.  
  6.   TITLE : ROW AND COLUMN COORDINATE UPDATE
  7.  
  8. The  following patch causes Turbo Gameworks to properly reset the 
  9. column  and  row  coordinates at the start of a  new  game.  This 
  10. problem  occurs  after the board has been Turned and a  New  game 
  11. started by typing N.
  12.  
  13. Note:  After  installing this patch make sure that you update the 
  14. version number of TURBO CHESS to 1.00B.  Be sure to indicate that 
  15. you  have updated the program in any correspondence you may  have 
  16. with the Technical Support Department.
  17.  
  18. In the procedure ResetGame in the file TALK.CH:
  19.  
  20.   Change from:
  21.      Turned := false;   { Print Screen picture }
  22.      SetUpScreen(FirstCall);
  23.      PrintBoard;
  24.   end; { ResetGame }
  25.  
  26.   Change to:
  27.      Turned := false;   { Print Screen picture }
  28.      SetBorder;                  { addition ver. 1.00B }
  29.      SetUpScreen(FirstCall);
  30.      PrintBoard;
  31.   end; { ResetGame }
  32.  
  33.