Use unknownbrackets method

This commit is contained in:
sum2012 2013-10-20 11:50:21 +08:00
parent a801e5c325
commit 4a278fcfcf

View File

@ -1,4 +1,17 @@
@echo off
IF exist .\ppsspp.log Del .\ppsspp.log
IF exist .\PPSSPPWindows.exe PPSSPPWindows.exe --log=ppsspp.log
IF exist .\PPSSPPWindows64.exe PPSSPPWindows64.exe --log=ppsspp.log
set LOGFILE=ppsspp.log
del "%LOGFILE%" 2> NUL
if exist PPSSPPWindows64.exe (
PPSSPPWindows64.exe --log="%LOGFILE%"
goto exit
)
if exist PPSSPPWindows.exe (
PPSSPPWindows.exe --log="%LOGFILE%"
goto exit
)
echo Unable to find PPSSPPWindows.exe.
pause
:exit