Skip to content

Commit

Permalink
Improve windows log
Browse files Browse the repository at this point in the history
Log name now ppsspplog.txt
Enable debug loggng
  • Loading branch information
sum2012 committed Dec 9, 2013
1 parent 1614c61 commit 917598e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions Windows/DebugLog.bat
@@ -0,0 +1,17 @@
@echo off
set LOGFILE=ppsspplog.txt

del "%LOGFILE%" 2> NUL
if exist PPSSPPDebug64.exe (
PPSSPPDebug64.exe --log="%LOGFILE%"
goto exit
)
if exist PPSSPPDebug.exe (
PPSSPPDebug.exe --log="%LOGFILE%"
goto exit
)

echo Unable to find PPSSPPDebug.exe.
pause

:exit
2 changes: 1 addition & 1 deletion Windows/Log.bat → Windows/InfoLog.bat
@@ -1,5 +1,5 @@
@echo off
set LOGFILE=ppsspp.log
set LOGFILE=ppsspplog.txt

del "%LOGFILE%" 2> NUL
if exist PPSSPPWindows64.exe (
Expand Down

0 comments on commit 917598e

Please sign in to comment.