ppsspp/Windows/InfoLog.bat

17 lines
286 B
Batchfile
Raw Normal View History

@echo off
set LOGFILE=ppsspplog.txt
2013-10-20 03:50:21 +00:00
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