mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-12 22:26:13 -04:00
Update hexadecimal numbers output format from ABCDh to 0xABCD
This commit is contained in:
parent
73d07cddc3
commit
9cc9518f8b
10 changed files with 397 additions and 394 deletions
|
@ -31,5 +31,5 @@ UString machineTypeToUString(UINT16 machineType)
|
|||
case EFI_IMAGE_FILE_MACHINE_RISCV64: return UString("RISC-V 64-bit");
|
||||
case EFI_IMAGE_FILE_MACHINE_RISCV128: return UString("RISC-V 128-bit");
|
||||
}
|
||||
return usprintf("Unknown %04Xh", machineType);
|
||||
return usprintf("Unknown 0x%04X", machineType);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue