mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Explicitly set flag on archive types
This commit is contained in:
@@ -24,13 +24,13 @@ namespace SabreTools.FileTypes
|
||||
/// <summary>
|
||||
/// Create a new Archive with no base file
|
||||
/// </summary>
|
||||
public BaseArchive() : base() { }
|
||||
public BaseArchive() : base(writeToParent: false) { }
|
||||
|
||||
/// <summary>
|
||||
/// Create a new BaseArchive from the given file
|
||||
/// </summary>
|
||||
/// <param name="filename">Name of the file to use</param>
|
||||
public BaseArchive(string filename) : base(filename) { }
|
||||
public BaseArchive(string filename) : base(filename, writeToParent: false) { }
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user