From d69aa76a1f40d938bed6d900a5e7b652335c11fe Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 17 Mar 2026 21:32:38 +0000 Subject: [PATCH] Add Generable sector status to handle regenerable content from metadata --- Aaru.CommonTypes/Enums/SectorStatus.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Aaru.CommonTypes/Enums/SectorStatus.cs b/Aaru.CommonTypes/Enums/SectorStatus.cs index 61ac42a45..d8e14f466 100644 --- a/Aaru.CommonTypes/Enums/SectorStatus.cs +++ b/Aaru.CommonTypes/Enums/SectorStatus.cs @@ -86,5 +86,9 @@ public enum SectorStatus : byte /// /// Content originally encrypted but stored decrypted in image. /// - Unencrypted = 0xA + Unencrypted = 0xA, + /// + /// Content can be regenerated from metadata (e.g. LFG junk fill). + /// + Generable = 0xB } \ No newline at end of file