From 7a5c8e3f025d2b4976b02291f20f1bd91aa5d98c Mon Sep 17 00:00:00 2001 From: Crudelis Date: Sat, 20 May 2023 12:54:48 +0900 Subject: [PATCH] -Bug Fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ran_agro 제보 루트로 지정했을시 폴더 구분자가 중복되어 에러가 나던 문제 해결 --- Mitria_Minecraft_Launcher/LauncherSetupForm.cs | 2 +- Mitria_Minecraft_Launcher/Updater/LauncherUpdate.cs | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Mitria_Minecraft_Launcher/LauncherSetupForm.cs b/Mitria_Minecraft_Launcher/LauncherSetupForm.cs index 3c13390..834b2a8 100644 --- a/Mitria_Minecraft_Launcher/LauncherSetupForm.cs +++ b/Mitria_Minecraft_Launcher/LauncherSetupForm.cs @@ -24,7 +24,7 @@ namespace Mitria_Minecraft_Launcher DialogResult result = folderBrowserDialog.ShowDialog(); if(result == DialogResult.OK) { - textBox_GameDirectory.Text = folderBrowserDialog.SelectedPath + "\\Mitria"; + textBox_GameDirectory.Text = CommonLibrary.Extensions.PathCombineW(folderBrowserDialog.SelectedPath,"Mitria"); } } diff --git a/Mitria_Minecraft_Launcher/Updater/LauncherUpdate.cs b/Mitria_Minecraft_Launcher/Updater/LauncherUpdate.cs index 5fe5789..28634ea 100644 --- a/Mitria_Minecraft_Launcher/Updater/LauncherUpdate.cs +++ b/Mitria_Minecraft_Launcher/Updater/LauncherUpdate.cs @@ -23,9 +23,6 @@ namespace Mitria_Minecraft_Launcher.Updater CommonLibrary.Log.INFO("Launcher Version : " + thisVersion); CommonLibrary.Log.INFO("Remote Launcher Version : " + remoteVersion); int result = remoteVersion.CompareTo(thisVersion); -#if DEBUG -result =1; -#endif if (result <= 0) { CommonLibrary.Log.INFO("Version Same");