From 76621d78d2aa8dfddeae218d587778e057ee6110 Mon Sep 17 00:00:00 2001 From: sum2012 Date: Tue, 16 Jul 2013 06:42:46 +0800 Subject: [PATCH] Fix for PPSSPP auto logging mode for Windows 64-bit Thanks @pal1000 Fix https://github.com/hrydgard/ppsspp/issues/2785 --- Windows/Log.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Windows/Log.bat b/Windows/Log.bat index ff714ca190..5f43e36576 100644 --- a/Windows/Log.bat +++ b/Windows/Log.bat @@ -1,5 +1,6 @@ @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 -PPSSPPWindows.exe \ No newline at end of file +IF exist .\User\Logs\ppsspp.log Del .\User\Logs\ppsspp.log +IF exist .\PPSSPPWindows.exe PPSSPPWindows.exe +IF exist .\PPSSPPWindows64.exe PPSSPPWindows64.exe \ No newline at end of file