Skip to content

Commit

Permalink
fix(dri3.c): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
twaik committed Dec 10, 2024
1 parent 64d6efb commit 473a650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/cpp/lorie/dri3.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ static RegionPtr lorieCopyArea(DrawablePtr pSrc, DrawablePtr pDst, GCPtr pGC, in
}

if ((pSrc->type == DRAWABLE_WINDOW || (pSrc->type == DRAWABLE_PIXMAP && pSrcPix0->devPrivate.ptr))
&& (pDst->type == DRAWABLE_WINDOW || (pDst->type == DRAWABLE_WINDOW && pDstPix1->devPrivate.ptr))) {
&& (pDst->type == DRAWABLE_WINDOW || (pDst->type == DRAWABLE_PIXMAP && pDstPix1->devPrivate.ptr))) {
r = (*pGC->ops->CopyArea)(pSrc, pDst, pGC, srcx, srcy, w, h, dstx, dsty);
}

Expand Down

0 comments on commit 473a650

Please sign in to comment.