This commit is contained in:
Glenn Maynard
2003-09-16 03:33:31 +00:00
parent 50f0b87950
commit b6c1089e3a
2 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
SET PATH=%PATH%;c:\stepmania\stepmania\utils
forfiles -p.. -s -m*.png -c"pngcrushinplace.bat 0x22@FILE0x22 0x22@FILEtemp0x22"
forfiles -p.. -s -m*.png -c"pngcrushinplace.bat 0x22@FILE0x22"
+7 -3
View File
@@ -1,3 +1,7 @@
pngcrush %1 %2
del %1
rename %2 %1
@echo off
SET file=%1
SET tempfile=%file%.TEMP
echo %file%
pngcrush -q %file% %tempfile%
del %file%
rename %tempfile% %file%