mirror of https://github.com/acidanthera/audk.git
LcdGraphicsOutputDxe: Fix BltVideoFill for non-32-bit architectures
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14701 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
5ad9b48f98
commit
64669acab3
|
@ -301,7 +301,7 @@ BltVideoFill (
|
|||
DestinationAddr = (VOID *)((UINT32 *)FrameBufferBase + DestinationLine * HorizontalResolution + DestinationX);
|
||||
|
||||
// Fill the entire line
|
||||
SetMemN( DestinationAddr, WidthInBytes, *((UINT32 *)EfiSourcePixel));
|
||||
SetMem32 (DestinationAddr, WidthInBytes, *((UINT32 *)EfiSourcePixel));
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue