home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if x%1 == x320 goto Do320
- if x%1 == x640 goto Do640
- if x%1 == x800 goto Do800
- if x%1 == x goto Do640
-
- echo No such graphic horizontal resolution %1, only 320, 640, and 800.
- goto done
-
- :Do320
- set GRMODE=gw 320 gh 200
- goto DoIt
-
- :Do640
- set GRMODE=gw 640 gh 480
- goto DoIt
-
- :Do800
- set GRMODE=gw 800 gh 600
- goto DoIt
-
- :DoIt
- @echo on
-
- set GCCTMP=c:/temp
- set GO32TMP=c:/temp
- set GO32=emu c:/djgpp/emu387 ansi driver c:/djgpp/ati1.grd %GRMODE%
-
- set GRMODE=
-
- path=c:/djgpp;%path%
-
- :done
-