diff --git a/SabreTools.DatFiles/DepotInformation.cs b/SabreTools.DatFiles/DepotInformation.cs
index b5c38cda..5ff504fd 100644
--- a/SabreTools.DatFiles/DepotInformation.cs
+++ b/SabreTools.DatFiles/DepotInformation.cs
@@ -28,7 +28,7 @@ namespace SabreTools.DatFiles
///
/// Set active state
/// Set depth between 0 and SHA-1's byte length
- public DepotInformation(bool isActive, int depth = 4)
+ public DepotInformation(bool isActive, int depth)
: this(null, isActive, depth)
{
}
@@ -39,7 +39,7 @@ namespace SabreTools.DatFiles
/// Identifier for the depot
/// Set active state
/// Set depth between 0 and SHA-1's byte length
- public DepotInformation(string? name, bool isActive, int depth = 4)
+ public DepotInformation(string? name, bool isActive, int depth)
{
Name = name;
IsActive = isActive;