-Bug Fix
Ran_agro 제보 루트로 지정했을시 폴더 구분자가 중복되어 에러가 나던 문제 해결
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -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");
|
||||
|
Reference in New Issue
Block a user