home *** CD-ROM | disk | FTP | other *** search
- Changes with TP 6.00
-
- - 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 graph.tpu, not in
- ET3000.BGI...
-
-
- This is a working installation procedure in TP 6.00:
-
- { ... }
-
- var
- driver, mode : integer;
-
- { ... }
-
- {$ifdef ET3K}
- driver := InstallUserDriver('ET3000', nil);
- mode := 2;
- {$else}
- driver := Detect;
- {$endif} { ET3K }
-
- InitGraph(driver, mode, '');
- { Path can be supplied. '' = CWD }
-
- { ... }
-
- compiling this with
-
- tpc -dET3K ...
-
- will result in a program with graphics output for the
- 800x600x256-Mode of the ET3K chip set.
-