ppsspp/Windows/Log.bat
2013-10-20 11:50:21 +08:00

17 lines
283 B
Batchfile

@echo off
set LOGFILE=ppsspp.log
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