From cc251f7f63d206af7a7605efea4657cd78b0079c Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 26 Jul 2026 09:48:32 -0400 Subject: [PATCH] PhysicalSystem isn't an enum anymore --- SabreTools.RedumpLib/Web/Packs.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SabreTools.RedumpLib/Web/Packs.cs b/SabreTools.RedumpLib/Web/Packs.cs index f5172af..50d0128 100644 --- a/SabreTools.RedumpLib/Web/Packs.cs +++ b/SabreTools.RedumpLib/Web/Packs.cs @@ -21,8 +21,10 @@ namespace SabreTools.RedumpLib.Web bool includeDatabase, bool useSubfolders) { - var systems = (PhysicalSystem[])Enum.GetValues(typeof(PhysicalSystem)); - return await client.DownloadPacksForSystems(systems, outDir, includeDatabase, useSubfolders); + return await client.DownloadPacksForSystems(PhysicalSystem.AllSystems, + outDir, + includeDatabase, + useSubfolders); } ///