Fixed const correctness of arguments.

This commit is contained in:
Armin Novak 2018-10-16 17:29:10 +02:00
parent 75517c06fb
commit 777bfe5c40
1 changed files with 1 additions and 1 deletions

View File

@ -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;