diff options
author | rubidium <rubidium@openttd.org> | 2011-11-14 21:39:14 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-11-14 21:39:14 +0000 |
commit | 387e410f3e7898cadec041f2849bc949810544bb (patch) | |
tree | aba21e7a083360b9a792608ffdbb09cb0685f519 /os/os2 | |
parent | 79b82b56a8bf3faf7733afe02470c20ce3cbfa47 (diff) | |
download | openttd-387e410f3e7898cadec041f2849bc949810544bb.tar.xz |
(svn r23221) -Codechange: update the documentation and installers regarding the new directories
Diffstat (limited to 'os/os2')
-rw-r--r-- | os/os2/installer/download_nosound.cmd | 6 | ||||
-rw-r--r-- | os/os2/installer/download_opengfx.cmd | 6 | ||||
-rw-r--r-- | os/os2/installer/download_opensfx.cmd | 6 | ||||
-rw-r--r-- | os/os2/installer/remove_nosound.cmd | 4 | ||||
-rw-r--r-- | os/os2/installer/remove_opengfx.cmd | 4 | ||||
-rw-r--r-- | os/os2/installer/remove_opensfx.cmd | 4 |
6 files changed, 15 insertions, 15 deletions
diff --git a/os/os2/installer/download_nosound.cmd b/os/os2/installer/download_nosound.cmd index 296becf3c..39e9843a9 100644 --- a/os/os2/installer/download_nosound.cmd +++ b/os/os2/installer/download_nosound.cmd @@ -4,12 +4,12 @@ if "%2" == "" goto err echo Downloading NoSound... -%1\wget http://binaries.openttd.org/installer/nosound-NOSOUND_VERSION.7z -O %2/data/nosound.7z +%1\wget http://binaries.openttd.org/installer/nosound-NOSOUND_VERSION.7z -O %2/baseset/nosound.7z echo Extracting NoSound... -%1\7za x -y -O%2/data %2/data/nosound.7z -del %1\data\nosound.7z /n +%1\7za x -y -O%2/baseset %2/baseset/nosound.7z +del %1\baseset\nosound.7z /n echo NoSound has been installed. goto end diff --git a/os/os2/installer/download_opengfx.cmd b/os/os2/installer/download_opengfx.cmd index 5fb0a32bc..c2686b456 100644 --- a/os/os2/installer/download_opengfx.cmd +++ b/os/os2/installer/download_opengfx.cmd @@ -4,12 +4,12 @@ if "%2" == "" goto err echo Downloading OpenGFX... -%1\wget http://binaries.openttd.org/installer/opengfx-OPENGFX_VERSION.7z -O %2/data/opengfx.7z +%1\wget http://binaries.openttd.org/installer/opengfx-OPENGFX_VERSION.7z -O %2/baseset/opengfx.7z echo Extracting OpenGFX... -%1\7za x -y -O%2/data %2/data/opengfx.7z -del %1\data\opengfx.7z /n +%1\7za x -y -O%2/baseset %2/baseset/opengfx.7z +del %1\baseset\opengfx.7z /n echo OpenGFX has been installed. goto end diff --git a/os/os2/installer/download_opensfx.cmd b/os/os2/installer/download_opensfx.cmd index 0a918b95f..0a46dea42 100644 --- a/os/os2/installer/download_opensfx.cmd +++ b/os/os2/installer/download_opensfx.cmd @@ -4,12 +4,12 @@ if "%2" == "" goto err echo Downloading OpenSFX... -%1\wget http://binaries.openttd.org/installer/opensfx-OPENSFX_VERSION.7z -O %2/data/opensfx.7z +%1\wget http://binaries.openttd.org/installer/opensfx-OPENSFX_VERSION.7z -O %2/baseset/opensfx.7z echo Extracting OpenSFX... -%1\7za x -y -O%2/data %2/data/opensfx.7z -del %1\data\opensfx.7z /n +%1\7za x -y -O%2/baseset %2/baseset/opensfx.7z +del %1\baseset\opensfx.7z /n echo OpenSFX has been installed. goto end diff --git a/os/os2/installer/remove_nosound.cmd b/os/os2/installer/remove_nosound.cmd index 6959fbf29..21c11e80d 100644 --- a/os/os2/installer/remove_nosound.cmd +++ b/os/os2/installer/remove_nosound.cmd @@ -3,8 +3,8 @@ if "%1" == "" goto err echo Removing NoSound... -del %1\data\nosound\*.* /n -rmdir %1\data\nosound +del %1\baseset\nosound\*.* /n +rmdir %1\baseset\nosound echo NoSound has been removed. goto end diff --git a/os/os2/installer/remove_opengfx.cmd b/os/os2/installer/remove_opengfx.cmd index 3efe7a7d5..71465d167 100644 --- a/os/os2/installer/remove_opengfx.cmd +++ b/os/os2/installer/remove_opengfx.cmd @@ -3,8 +3,8 @@ if "%1" == "" goto err echo Removing OpenGFX... -del %1\data\opengfx\*.* /n -rmdir %1\data\opengfx +del %1\baseset\opengfx\*.* /n +rmdir %1\baseset\opengfx echo OpenGFX has been removed. goto end diff --git a/os/os2/installer/remove_opensfx.cmd b/os/os2/installer/remove_opensfx.cmd index fdd88b9de..361a870e3 100644 --- a/os/os2/installer/remove_opensfx.cmd +++ b/os/os2/installer/remove_opensfx.cmd @@ -3,8 +3,8 @@ if "%1" == "" goto err echo Removing OpenSFX... -del %1\data\opensfx\*.* /n -rmdir %1\data\opensfx +del %1\baseset\opensfx\*.* /n +rmdir %1\baseset\opensfx echo OpenSFX has been removed. goto end |