ppsspp/Windows/InfoLog.bat
sum2012 917598e03d Improve windows log
Log name now ppsspplog.txt
Enable debug loggng
2013-12-10 07:18:55 +08:00

17 lines
286 B
Batchfile

@echo off
set LOGFILE=ppsspplog.txt
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