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 }