home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Games 4 / CD_1.iso / kids / dotman / dot2dot.bat < prev    next >
DOS Batch File  |  1994-08-11  |  737b  |  32 lines

  1. @echo off
  2. rem If you have a Sound Blaster and want to hear background music in
  3. rem Dot-Mania, you must first load the SBFMDRV driver.  Use this batch
  4. rem file to load and unload this driver.  You may have to modify the
  5. rem path to SBFMDRV.COM if you don't have it in the SB directory.
  6. rem For Dot-Mania to work properly with a Sound Blaster, ensure you've
  7. rem got the SOUND and BLASTER environment variables setup correctly.
  8.  
  9. if "%SOUND%" == "" goto check2
  10. if exist %SOUND%\sbfmdrv.com goto sound1
  11. goto nosound
  12.  
  13. :check2
  14. if exist \sb\sbfmdrv.com goto sound2
  15.  
  16. :nosound
  17. dotprog
  18. goto exit
  19.  
  20. :sound1
  21. %SOUND%\sbfmdrv
  22. dotprog       
  23. %SOUND%\sbfmdrv /u
  24. goto exit
  25.  
  26. :sound2
  27. \sb\sbfmdrv
  28. dotprog       
  29. \sb\sbfmdrv /u
  30.  
  31. :exit
  32.