mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
917598e03d
Log name now ppsspplog.txt Enable debug loggng
17 lines
286 B
Batchfile
17 lines
286 B
Batchfile
@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 |