home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2000 September
/
Gamestar_22_2000-09_cd1.bin
/
PATCHE
/
DS9Patch1.exe
/
InstallPatch.bat
< prev
Wrap
DOS Batch File
|
2000-08-03
|
1KB
|
45 lines
@echo off
echo -------------------------------------
echo DS9 The Fallen - Demo Patch Installer
echo -------------------------------------
echo.
echo This batch file replaces certain system files, improving
echo performance related to the Miles sound driver and the
echo Direct 3D driver.
echo.
echo NOTE: It does not alter any game content.
echo.
pause
if not exist default.ini goto usage
attrib -r default.ini
attrib -r d3ddrv.dll
if not exist default.old goto noolddefault
del default.old
:noolddefault
if not exist d3ddrv.old goto nooldd3ddrv
del d3ddrv.old
:nooldd3ddrv
ren default.ini default.old
ren d3ddrv.dll d3ddrv.old
ren default.new default.ini
ren d3ddrv.new d3ddrv.dll
if not exist ds9.ini goto success
attrib -r ds9.ini
del ds9.ini
goto success
:usage
echo.
echo -- Error: Could not find system files to overwrite --
echo.
echo Please make sure that the patch is installed into the
echo system directory where the game was originally installed.
goto end
:success
echo.
echo -- Installation complete --
:end
echo.
pause