1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-29 21:21:08 +00:00

Remove unnecessary XLOCK/XUNLOCK around calls to bitblt_to_screen/clipping_Xbitblt in getXsignaldata()

This commit is contained in:
Nick Briggs
2021-07-06 20:15:35 -07:00
parent 9ed46e6b69
commit 40e18e6da0

View File

@@ -237,11 +237,9 @@ void getXsignaldata(DspInterface dsp)
case EnterNotify: Mouse_Included = TRUE; break;
case LeaveNotify: Mouse_Included = FALSE; break;
case Expose:
XLOCK;
(dsp->bitblt_to_screen)(dsp, 0, report.xexpose.x + dsp->Visible.x,
report.xexpose.y + dsp->Visible.y, report.xexpose.width,
report.xexpose.height);
XUNLOCK(dsp);
break;
default: break;
}