home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 126.CONFIG.INC < prev    next >
Text File  |  1992-07-23  |  819b  |  19 lines

  1. procedure configstuff;
  2. { procedure essentially from the net }
  3. var
  4.   line : string;
  5. begin
  6.   writeln('Eventually, there will be several configuration options available.');
  7.   writeln('First is the option of monochrome -- if you load GRAPHICS.COM');
  8.   writeln('your print screen will work.  (Also good for laptop VGA screens.');
  9.   write('Do you want a Monochrome display? [');
  10.   if mono then write('Y] ') else write('N] ');
  11.   readln( line );
  12.   if line <> '' then mono := upcase(line[1]) = 'Y';
  13.   writeln('Port displays can have rather full lines: you can switch to');
  14.   writeln('compact codes to get more per line.');
  15.   write('Do you want compact sector description codes? [');
  16.   if verbose then write('N] ') else write('Y] ');
  17.   readln( line );
  18.   if line <> '' then verbose := upcase(line[1]) = 'N';
  19. end;