mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-28 02:41:18 +00:00
commit
fa2846be17
@ -1,6 +1,17 @@
|
||||
@echo off
|
||||
IF Not exist .\User md .\User
|
||||
IF Not exist .\User\Logs md .\User\Logs
|
||||
IF exist .\User\Logs\ppsspp.log Del .\User\Logs\ppsspp.log
|
||||
IF exist .\PPSSPPWindows.exe PPSSPPWindows.exe
|
||||
IF exist .\PPSSPPWindows64.exe PPSSPPWindows64.exe
|
||||
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
|
Loading…
Reference in New Issue
Block a user