diff --git a/GBM/Forms/frmGameManager.vb b/GBM/Forms/frmGameManager.vb index 5264195..ed5e392 100644 --- a/GBM/Forms/frmGameManager.vb +++ b/GBM/Forms/frmGameManager.vb @@ -442,8 +442,8 @@ Public Class frmGameManager End If Else If txtAppPath.Text <> String.Empty Then - If Directory.Exists(txtAppPath.Text & "\" & txtSavePath.Text) Then - sRoot = txtAppPath.Text & "\" & txtSavePath.Text + If Directory.Exists(txtAppPath.Text & Path.DirectorySeparatorChar & txtSavePath.Text) Then + sRoot = txtAppPath.Text & Path.DirectorySeparatorChar & txtSavePath.Text End If End If End If @@ -1449,4 +1449,4 @@ Public Class frmGameManager Private Sub btnExport_Click(sender As Object, e As EventArgs) Handles btnExport.Click ExportGameList() End Sub -End Class \ No newline at end of file +End Class