mirror of https://github.com/acidanthera/audk.git
Fix X64 build fail.
Signed-off-by: Eric Dong <eric.dong@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14903 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
7248790ee9
commit
2e7183ba91
|
@ -2855,7 +2855,7 @@ UiDisplayMenu (
|
|||
//
|
||||
// First minus the menu of the top screen, it's value is SkipValue.
|
||||
//
|
||||
if (SkipValue >= (INTN) (BottomRow - TopRow + 1)) {
|
||||
if (SkipValue >= BottomRow - TopRow + 1) {
|
||||
//
|
||||
// SkipValue > (BottomRow - TopRow + 1) means current menu has more than one
|
||||
// form of options to be show, so just update the SkipValue to show the next
|
||||
|
|
Loading…
Reference in New Issue