don't load mjolnir on startup; and use the mod specified on the commandline

This commit is contained in:
Chris Forbes
2010-05-10 21:02:06 +12:00
parent de59ce1091
commit 1483addb99
2 changed files with 14 additions and 7 deletions

View File

@@ -11,11 +11,11 @@ namespace OpenRA.Editor
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
static void Main( string[] args )
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
Application.Run(new Form1(args));
}
}
}