home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / MISC / ET3BGI11.ZIP / READMETC.101 < prev    next >
Encoding:
Text File  |  1991-06-04  |  658 b   |  33 lines

  1. Changes with TC++ 1.01:
  2.  
  3. - installuserdriver() works as you would have expected now.
  4.   You *must* omit the "+ 5" after installuserdriver, if you
  5.   use version 1.01.
  6. - floodfill() works with 256 color modes now. :-)
  7.  
  8. These changes are due to changes in graphics.lib, not in
  9. ET3000.BGI...
  10.  
  11. So this is the installation procedure for TC++ 1.01:
  12.  
  13. /* ... */
  14.  
  15.     int driver, mode;
  16.  
  17. /* ... */
  18.  
  19. #ifdef ET3K
  20.     driver = installuserdriver("ET3000", NULL);
  21.     mode = 2;
  22. #else
  23.     driver = DETECT;
  24. #endif /* ET3K */
  25.  
  26. #ifdef BGIPATH
  27.     initgraph(&driver, &mode, BGIPATH);
  28. #else
  29.         initgraph(&driver, &mode, NULL);
  30. #endif /* BGIPATH */
  31.  
  32. /* ... */
  33.