home *** CD-ROM | disk | FTP | other *** search
/ Action Games (Willard) / ACTGMS_VOL1.iso / rott / patchme.bat < prev    next >
Encoding:
DOS Batch File  |  1995-02-15  |  464 b   |  22 lines

  1. @echo off
  2. if "%1"=="1" goto patch
  3.  
  4. :message
  5. echo.
  6. echo This batch file is a remnant of having patched an Apogee game
  7. echo on your hard drive.  It serves no other purpose, and may be deleted.
  8. echo Deleting this batch file will not affect your game whatsoever.
  9. echo.
  10. echo -- Apogee Technical Support
  11. echo.
  12. goto end
  13.  
  14. :patch
  15. patch patch.rtp
  16. if exist patch.rtp del patch.rtp
  17. if exist patch.exe del patch.exe
  18. if exist *.rot del *.rot
  19. goto end
  20.  
  21. :end
  22.