Files
itgmania212121/stepmania/Utils/pngcrushinplace.bat
T

8 lines
125 B
Batchfile
Raw Normal View History

2003-09-16 03:33:31 +00:00
@echo off
SET file=%1
SET tempfile=%file%.TEMP
echo %file%
pngcrush -q %file% %tempfile%
del %file%
rename %tempfile% %file%