Сообщение от catalinnc
@ErikPshat
some guy reported that uncharted game has a file with a special name "64 woof!.dds" that is not handled by convert.bat
here is the fix for convert.bat
replace
setlocal enabledelayedexpansion
with
setlocal disabledelayedexpansion
replace
for /F "tokens=*" %%n in (!infile!) do (
set LINE=%%n
set TMPR=!LINE:%find%=%replace%!
Echo !TMPR!>>TMP.TXT
)
with
for /F "tokens=*" %%n in (%infile%) do (
set LINE=%%n
setlocal enabledelayedexpansion
set TMPR=!LINE:%find%=%replace%!
Echo !TMPR!>>TMP.TXT
endlocal
)
replace
for /f "tokens=*" %%B in (!infile!) do make_npdata -e "PS3_GAME\%%~B" "%NAME%\%%~B" 0 1 2 0 16
with
for /f "tokens=*" %%B in (%infile%) do make_npdata -e "PS3_GAME\%%~B" "%NAME%\%%~B" 0 1 2 0 16
_
|
Please, use this source code in the attachment:
https://www.pspx.ru/forum/showpost.php?p=1108113
In the first post a very old batch file, which for a long time no one uses.