mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Improve windows log
Log name now ppsspplog.txt Enable debug loggng
This commit is contained in:
parent
1614c6194d
commit
917598e03d
2 changed files with 18 additions and 1 deletions
17
Windows/DebugLog.bat
Normal file
17
Windows/DebugLog.bat
Normal file
|
@ -0,0 +1,17 @@
|
|||
@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
|
|
@ -1,5 +1,5 @@
|
|||
@echo off
|
||||
set LOGFILE=ppsspp.log
|
||||
set LOGFILE=ppsspplog.txt
|
||||
|
||||
del "%LOGFILE%" 2> NUL
|
||||
if exist PPSSPPWindows64.exe (
|
Loading…
Add table
Reference in a new issue