mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-13 11:38:34 +00:00
17 lines
283 B
Batchfile
17 lines
283 B
Batchfile
@echo off
|
|
set LOGFILE=ppsspp.log
|
|
|
|
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 |