ppsspp/Windows/DebugLog.bat

18 lines
305 B
Batchfile
Raw Normal View History

@echo off
set LOGFILE=ppsspplog.txt
del "%LOGFILE%" 2> NUL
if exist PPSSPPWindows64.exe (
start PPSSPPWindows64.exe --log="%LOGFILE%" -d
goto exit
)
if exist PPSSPPWindows.exe (
start PPSSPPWindows.exe --log="%LOGFILE%" -d
goto exit
)
2014-04-01 14:16:44 +00:00
echo Unable to find PPSSPPWindows.exe.
pause
:exit