From fb38f64c8b4df2b23a96b16c955357381c78d457 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 28 Dec 2009 17:50:59 +1300 Subject: [PATCH] oops; that didnt actually work without aftermath --- SequenceEditor/Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SequenceEditor/Program.cs b/SequenceEditor/Program.cs index aed4c20707..a99f6479ee 100644 --- a/SequenceEditor/Program.cs +++ b/SequenceEditor/Program.cs @@ -74,7 +74,6 @@ namespace SequenceEditor try { FileSystem.MountDefault( true ); - FileSystem.MountTemporary(new Package("temperat.mix")); } catch( FileNotFoundException fnf ) { @@ -82,6 +81,8 @@ namespace SequenceEditor throw new InvalidOperationException( "Unable to load MIX files" ); } + FileSystem.MountTemporary(new Package("temperat.mix")); + XmlFilename = args.FirstOrDefault( x => x.EndsWith(".xml") ) ?? "sequences.xml"; Doc = new XmlDocument(); Doc.Load(XmlFilename);