Update the DebugLog batch file so it works with the new command-line option.

This commit is contained in:
The Dax 2014-03-31 22:45:24 -04:00
parent 3259b61cf2
commit abbceb095b

View File

@ -2,16 +2,16 @@
set LOGFILE=ppsspplog.txt
del "%LOGFILE%" 2> NUL
if exist PPSSPPDebug64.exe (
PPSSPPDebug64.exe --log="%LOGFILE%"
if exist PPSSPPWindows64.exe (
start PPSSPPWindows64.exe --log="%LOGFILE%" -d
goto exit
)
if exist PPSSPPDebug.exe (
PPSSPPDebug.exe --log="%LOGFILE%"
if exist PPSSPPWindows.exe (
start PPSSPPWindows.exe --log="%LOGFILE%" -d
goto exit
)
echo Unable to find PPSSPPDebug.exe.
pause
:exit
:exit