git-svn-id: svn://localhost/Users/andi/Downloads/code/trunk@27 eddbe33b-e435-4246-ac25-f5eb65f9a13c

This commit is contained in:
leathl 2010-01-12 17:36:46 +00:00
parent abb6b9927d
commit 1274623f1a
1 changed files with 1 additions and 1 deletions

View File

@ -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);