From 2c28ffd724b9306da9dc780f6f1f7d5142d6e2d5 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 13 Jul 2026 14:37:50 -0400 Subject: [PATCH] Add numeric values to SystemCategory --- SabreTools.RedumpLib/Data/Enumerations.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/SabreTools.RedumpLib/Data/Enumerations.cs b/SabreTools.RedumpLib/Data/Enumerations.cs index b8e613c..81825dd 100644 --- a/SabreTools.RedumpLib/Data/Enumerations.cs +++ b/SabreTools.RedumpLib/Data/Enumerations.cs @@ -359,25 +359,24 @@ namespace SabreTools.RedumpLib.Data /// /// List of system categories /// - /// TODO: Add numeric values or convert to constants public enum SystemCategory { NONE = 0, [HumanReadable(LongName = "Disc-Based Consoles")] - DiscBasedConsole, + DiscBasedConsole = 1, [HumanReadable(LongName = "Other Consoles")] - OtherConsole, + OtherConsole = 2, [HumanReadable(LongName = "Computers")] - Computer, + Computer = 3, [HumanReadable(LongName = "Arcade")] - Arcade, + Arcade = 4, [HumanReadable(LongName = "Other")] - Other, + Other = 5, }; ///