Update SharpZipLib to 1.1.0.
The default code page has been changed to UTF8 so our workarounds are no longer needed.
This commit is contained in:
committed by
Oliver Brakmann
parent
9cbf08201f
commit
f69c6ab3fb
@@ -33,7 +33,7 @@ namespace OpenRA.FileSystem
|
||||
public ReadOnlyZipFile(Stream s, string filename)
|
||||
{
|
||||
Name = filename;
|
||||
pkg = ZipFileHelper.Create(s);
|
||||
pkg = new ZipFile(s);
|
||||
}
|
||||
|
||||
public Stream GetStream(string filename)
|
||||
@@ -113,7 +113,7 @@ namespace OpenRA.FileSystem
|
||||
}
|
||||
|
||||
pkgStream.Position = 0;
|
||||
pkg = ZipFileHelper.Create(pkgStream);
|
||||
pkg = new ZipFile(pkgStream);
|
||||
Name = filename;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user