Fix some more 0xAB into ABh

This commit is contained in:
Nikolaj Schlej 2025-04-30 12:43:40 +07:00
parent ec558b6da2
commit 367a8f9fc5
2 changed files with 12 additions and 12 deletions

View file

@ -98,8 +98,8 @@ UString itemSubtypeToUString(const UINT8 type, const UINT8 subtype)
else if (subtype == Subtypes::UefiImage) return UString("UEFI");
break;
case Types::Padding:
if (subtype == Subtypes::ZeroPadding) return UString("Empty (0x00)");
else if (subtype == Subtypes::OnePadding) return UString("Empty (0xFF)");
if (subtype == Subtypes::ZeroPadding) return UString("Empty (00h)");
else if (subtype == Subtypes::OnePadding) return UString("Empty (FFh)");
else if (subtype == Subtypes::DataPadding) return UString("Non-empty");
break;
case Types::Volume: