[ZipFileEntry] Change default to tzip

This commit is contained in:
Matt Nadareski
2016-09-16 15:39:52 -07:00
parent af44f4ca20
commit 9581fa2054

View File

@@ -137,8 +137,8 @@ namespace SabreTools.Helper
/// </summary>
/// <param name="zipstream">Stream representing the entry</param>
/// <param name="filename">Internal filename to use</param>
/// <param name="torrentZip">True if the file should be set with TorrentZip defaults, false otherwise (default)</param>
public ZipFileEntry(Stream zipstream, string filename, bool torrentZip = false)
/// <param name="torrentZip">True if the file should be set with TorrentZip defaults (default), false otherwise</param>
public ZipFileEntry(Stream zipstream, string filename, bool torrentZip = true)
{
_zip64 = false;
_zipstream = zipstream;