Skip to content

Commit

Permalink
Update the DebugLog batch file so it works with the new command-line …
Browse files Browse the repository at this point in the history
…option.
  • Loading branch information
thedax committed Apr 1, 2014
1 parent 3259b61 commit abbceb0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Windows/DebugLog.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit abbceb0

Please sign in to comment.