Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/Windows/DebugLog.bat
3185 views
@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
)

echo Unable to find PPSSPPWindows.exe.
pause

:exit