mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
16 lines
240 B
Batchfile
16 lines
240 B
Batchfile
@echo off
|
|
if "%1" == "" goto err
|
|
|
|
echo Removing OpenGFX...
|
|
|
|
del %1\baseset\opengfx\*.* /n
|
|
rmdir %1\baseset\opengfx
|
|
|
|
echo OpenGFX has been removed.
|
|
goto end
|
|
|
|
:err
|
|
echo This batch file is only intended for use by the OpenTTD installer.
|
|
|
|
:end
|