From be5aa383268bdd412a7d8cde85c10c98d22763e5 Mon Sep 17 00:00:00 2001 From: Jakub Szczyrk Date: Wed, 25 Nov 2020 13:25:05 +0100 Subject: [PATCH] fix use method Open to OpenFile --- Assets/PatchKit Patcher/Scripts/Debug/DebugMenu.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/PatchKit Patcher/Scripts/Debug/DebugMenu.cs b/Assets/PatchKit Patcher/Scripts/Debug/DebugMenu.cs index 6f03b011..a47e47ee 100644 --- a/Assets/PatchKit Patcher/Scripts/Debug/DebugMenu.cs +++ b/Assets/PatchKit Patcher/Scripts/Debug/DebugMenu.cs @@ -154,7 +154,7 @@ private void OpenLauncherLogFileLocation() OpenPopup("Access to Launcher in the editor is not possible"); #else string logDirectoryPath = Patcher.Instance.Data.Value.LockFilePath.Replace(".lock",""); - Open(logDirectoryPath); + OpenFile(logDirectoryPath); #endif } @@ -164,7 +164,7 @@ private void OpenLauncherLogFile() OpenPopup("Access to Launcher in the editor is not possible"); #else string logPath = Patcher.Instance.Data.Value.LockFilePath.Replace(".lock","launcher-log.txt"); - Open(logPath); + OpenFile(logPath); #endif }