CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Windows/InfoLog.bat
Views: 1401
@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