From 1274623f1aebd1d0aaba449dc65a15116b66607d Mon Sep 17 00:00:00 2001 From: leathl Date: Tue, 12 Jan 2010 17:36:46 +0000 Subject: [PATCH] git-svn-id: svn://localhost/Users/andi/Downloads/code/trunk@27 eddbe33b-e435-4246-ac25-f5eb65f9a13c --- CustomizeMiiInstaller/InstallerHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CustomizeMiiInstaller/InstallerHelper.cs b/CustomizeMiiInstaller/InstallerHelper.cs index df1f01d..45c8c75 100644 --- a/CustomizeMiiInstaller/InstallerHelper.cs +++ b/CustomizeMiiInstaller/InstallerHelper.cs @@ -86,7 +86,7 @@ namespace CustomizeMiiInstaller private static MemoryStream LoadCompressedStubInstaller(string installerResourceName) { - using (BinaryReader resLoader = new BinaryReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("Helpers.Resources." + installerResourceName))) + using (BinaryReader resLoader = new BinaryReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("CustomizeMiiInstaller.Resources." + installerResourceName))) { MemoryStream ms = new MemoryStream(); byte[] temp = resLoader.ReadBytes((int)resLoader.BaseStream.Length);