Load assets using absolute paths. Fixes #6717.

This commit is contained in:
Paul Chote
2014-10-09 08:36:24 +13:00
parent 0d0b8c1e22
commit 4f44cc1969
35 changed files with 491 additions and 458 deletions

View File

@@ -24,7 +24,7 @@ namespace OpenRA.CrashDialog
[STAThread]
public static void Main(string[] args)
{
settings = new Settings(Platform.SupportDir + "settings.yaml", new Arguments());
settings = new Settings(Platform.ResolvePath("^", "settings.yaml"), new Arguments());
var form = new Form
{
@@ -95,7 +95,7 @@ namespace OpenRA.CrashDialog
{
try
{
Process.Start(Platform.SupportDir + "Logs" + Path.DirectorySeparatorChar);
Process.Start(Platform.ResolvePath("^", "Logs"));
}
catch { }
}