fix it on nonwindows too

This commit is contained in:
Chris Forbes
2010-06-18 18:34:33 +12:00
parent 8afb17c3f5
commit c83f78f259

View File

@@ -51,7 +51,8 @@ namespace OpenRA.Editor
Rules.LoadRules(manifest, new Map());
folderBrowser.SelectedPath = Path.Combine(Environment.CurrentDirectory,"mods\\" + currentMod + "\\maps");
folderBrowser.SelectedPath = new string[] { Environment.CurrentDirectory, "mods", currentMod, "maps" }
.Aggregate(Path.Combine);
}
string loadedMapName;