Improve windows log

Log name now ppsspplog.txt
Enable debug loggng
This commit is contained in:
sum2012 2013-12-10 07:18:55 +08:00
parent 1614c6194d
commit 917598e03d
2 changed files with 18 additions and 1 deletions

17
Windows/DebugLog.bat Normal file
View file

@ -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

View file

@ -1,5 +1,5 @@
@echo off
set LOGFILE=ppsspp.log
set LOGFILE=ppsspplog.txt
del "%LOGFILE%" 2> NUL
if exist PPSSPPWindows64.exe (