Add a missing break to types.cpp

This commit is contained in:
Nikolaj Schlej 2022-09-13 13:11:40 +02:00 committed by Nikolaj Schlej
parent 6e5cc3bccc
commit 574754fce6

View File

@ -164,6 +164,7 @@ UString itemSubtypeToUString(const UINT8 type, const UINT8 subtype)
else if (subtype == Subtypes::MetadataCpdPartition) return UString("Metadata"); else if (subtype == Subtypes::MetadataCpdPartition) return UString("Metadata");
else if (subtype == Subtypes::KeyCpdPartition) return UString("Key"); else if (subtype == Subtypes::KeyCpdPartition) return UString("Key");
else if (subtype == Subtypes::CodeCpdPartition) return UString("Code"); else if (subtype == Subtypes::CodeCpdPartition) return UString("Code");
break;
case Types::StartupApDataEntry: case Types::StartupApDataEntry:
if (subtype == Subtypes::x86128kStartupApDataEntry) return UString("X86 128K"); if (subtype == Subtypes::x86128kStartupApDataEntry) return UString("X86 128K");
break; break;