Skip to content

Commit

Permalink
fix1
Browse files Browse the repository at this point in the history
Co-authored-by: Michał Żygowski <[email protected]>
  • Loading branch information
filipleple and miczyg1 authored Oct 26, 2023
1 parent c35ef3f commit 0f50770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MdeModulePkg/Universal/DisplayEngineDxe/InputHandler.c
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ GetNumericInput (
if ((Question->OpCode->OpCode == EFI_IFR_NUMERIC_OP) && (NumericOp != NULL)) {
if ((NumericOp->Flags & EFI_IFR_DISPLAY) == EFI_IFR_DISPLAY_UINT_HEX){
HexInput = TRUE;
} else if ( ((NumericOp->Flags & EFI_IFR_DISPLAY) == 0) ){
} else if ((NumericOp->Flags & EFI_IFR_DISPLAY) == 0){
//
// Display with EFI_IFR_DISPLAY_INT_DEC type. Support negative number.
//
Expand Down

0 comments on commit 0f50770

Please sign in to comment.