From 574754fce69a7cdd19ff7e7d15219fd4af255983 Mon Sep 17 00:00:00 2001 From: Nikolaj Schlej Date: Tue, 13 Sep 2022 13:11:40 +0200 Subject: [PATCH] Add a missing break to types.cpp --- common/types.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/types.cpp b/common/types.cpp index 4298337..fb12baf 100755 --- a/common/types.cpp +++ b/common/types.cpp @@ -164,6 +164,7 @@ UString itemSubtypeToUString(const UINT8 type, const UINT8 subtype) else if (subtype == Subtypes::MetadataCpdPartition) return UString("Metadata"); else if (subtype == Subtypes::KeyCpdPartition) return UString("Key"); else if (subtype == Subtypes::CodeCpdPartition) return UString("Code"); + break; case Types::StartupApDataEntry: if (subtype == Subtypes::x86128kStartupApDataEntry) return UString("X86 128K"); break;