[ALL] Mappings and pathing updates

This commit is contained in:
Matt Nadareski
2016-06-16 22:17:58 -07:00
parent 31c5292c8e
commit 1b9feb8ea4
11 changed files with 368 additions and 43 deletions

View File

@@ -14,7 +14,6 @@ namespace SabreTools
/// </summary>
private static void Setup()
{
Remapping.CreateRemappings();
Build.Start("DATabase");
// Perform initial database and folder setup
@@ -40,7 +39,7 @@ namespace SabreTools
while (sldr.Read())
{
int systemid = sldr.GetInt32(0);
string system = _datroot + Path.DirectorySeparatorChar + sldr.GetString(1) + " - " + sldr.GetString(2);
string system = Path.Combine(_datroot, sldr.GetString(1) + " - " + sldr.GetString(2));
system = system.Trim();
if (!Directory.Exists(system))