home *** CD-ROM | disk | FTP | other *** search
-
- Uses showbmp2,crt;
-
- Begin
-
- if Vga256exist<>true then {Does the Video Card Support 256c?}
- begin
- writeln('Sorry! 256c Mode Not Supported!');
- halt;
- end;
-
-
- SetVideomode($13); {Set Video Mode to 320x200x256c}
- showbmp('runset.dat',false); {Display the bitmap, change false to true
- for quicker display}
-
- repeat
- until keypressed;
-
- fadeout; {Fade the Picture}
- textmode(co80); {Setup Textmode}
-
- end.
-