home *** CD-ROM | disk | FTP | other *** search
- Changes with TC++ 1.01:
-
- - installuserdriver() works as you would have expected now.
- You *must* omit the "+ 5" after installuserdriver, if you
- use version 1.01.
- - floodfill() works with 256 color modes now. :-)
-
- These changes are due to changes in graphics.lib, not in
- ET3000.BGI...
-
- So this is the installation procedure for TC++ 1.01:
-
- /* ... */
-
- int driver, mode;
-
- /* ... */
-
- #ifdef ET3K
- driver = installuserdriver("ET3000", NULL);
- mode = 2;
- #else
- driver = DETECT;
- #endif /* ET3K */
-
- #ifdef BGIPATH
- initgraph(&driver, &mode, BGIPATH);
- #else
- initgraph(&driver, &mode, NULL);
- #endif /* BGIPATH */
-
- /* ... */
-