mirror of https://github.com/FreeRDP/FreeRDP
Fixed const correctness of arguments.
This commit is contained in:
parent
75517c06fb
commit
777bfe5c40
|
@ -574,7 +574,7 @@ static BOOL gdi_dstblt(rdpContext* context, const DSTBLT_ORDER* dstblt)
|
|||
gdi_rop3_code(dstblt->bRop), &gdi->palette);
|
||||
}
|
||||
|
||||
static BOOL gdi_patblt(rdpContext* context, PATBLT_ORDER* patblt)
|
||||
static BOOL gdi_patblt(rdpContext* context, const PATBLT_ORDER* patblt)
|
||||
{
|
||||
const rdpBrush* brush = &patblt->brush;
|
||||
UINT32 foreColor;
|
||||
|
|
Loading…
Reference in New Issue