mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
17 lines
No EOL
276 B
Batchfile
17 lines
No EOL
276 B
Batchfile
@echo off
|
|
set LOGFILE=ppsspplog.txt
|
|
|
|
del "%LOGFILE%" 2> NUL
|
|
if exist PPSSPPDebug64.exe (
|
|
PPSSPPDebug64.exe --log="%LOGFILE%"
|
|
goto exit
|
|
)
|
|
if exist PPSSPPDebug.exe (
|
|
PPSSPPDebug.exe --log="%LOGFILE%"
|
|
goto exit
|
|
)
|
|
|
|
echo Unable to find PPSSPPDebug.exe.
|
|
pause
|
|
|
|
:exit |