From 945c290ea3d5fed14a23b69ba38d77f68f373797 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Wed, 28 Oct 2009 22:55:25 +1300 Subject: [PATCH] oops --- SequenceEditor/Program.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SequenceEditor/Program.cs b/SequenceEditor/Program.cs index 9056a4a4b8..76a4ce58ce 100644 --- a/SequenceEditor/Program.cs +++ b/SequenceEditor/Program.cs @@ -60,6 +60,9 @@ namespace SequenceEditor [STAThread] static void Main( string[] args ) { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + FileSystem.Mount(new Folder("./")); var packages = new[] { "redalert", "conquer", "hires", "general", "local" }; @@ -93,8 +96,6 @@ namespace SequenceEditor Sequences[e.GetAttribute("name")] = new Sequence(e); } - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } }