diff --git a/src/rhd_cursor.c b/src/rhd_cursor.c index 8e21409..7959a35 100644 --- a/src/rhd_cursor.c +++ b/src/rhd_cursor.c @@ -220,10 +220,12 @@ displayCursor(struct rhdCrtc *Crtc) * hotspot support for that. Cannot exceed width, but cursor is * not visible in this case. */ + /* if (Cursor->X >= Crtc->X - Cursor->Width && Cursor->X < Crtc->X + Crtc->Width && Cursor->Y >= Crtc->Y - Cursor->Height && Cursor->Y < Crtc->Y + Crtc->Height) { + */ int X, Y, HotX, HotY; X = Cursor->X >= 0 ? Cursor->X : 0; @@ -233,8 +235,10 @@ displayCursor(struct rhdCrtc *Crtc) enableCursor(Cursor, TRUE); setCursorPos(Cursor, X, Y, HotX, HotY); + /* } else enableCursor(Cursor, FALSE); + */ } /*