Add Generable sector status to handle regenerable content from metadata

This commit is contained in:
2026-03-17 21:32:38 +00:00
parent d6a68dd4ca
commit d69aa76a1f

View File

@@ -86,5 +86,9 @@ public enum SectorStatus : byte
/// <summary>
/// Content originally encrypted but stored decrypted in image.
/// </summary>
Unencrypted = 0xA
Unencrypted = 0xA,
/// <summary>
/// Content can be regenerated from metadata (e.g. LFG junk fill).
/// </summary>
Generable = 0xB
}