Fixed GetBuilderRoot function

This commit is contained in:
Michael J. Seiferling
2016-03-03 18:21:06 -06:00
parent 44c2d98f25
commit 163b6cd3a0
+2 -2
View File
@@ -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