You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
401 B
14 lines
401 B
@echo off
|
|
|
|
rem Removes the IcePicked gdiplus.dll, and replaces it with the original
|
|
|
|
pushd %~dp0..\Engine\Flat\dll\obj\i386
|
|
|
|
if not exist gdiplus.beforecap.dll echo gppick has not been run on this gdiplus.dll & goto exit
|
|
if not exist gdiplus.dll echo gdiplus.dll not found & goto exit
|
|
del gdiplus.dll
|
|
ren gdiplus.beforecap.dll gdiplus.dll
|
|
echo gdiplus.dll has been restored.
|
|
|
|
:exit
|
|
popd
|