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");