Skip to content

Can't _fillRect at the far right edge #97

@MarkJeronimus

Description

@MarkJeronimus

Because of a typo, 1-wide filled rectangles, aligned at the right edge of the clipping window, become invisible:

if ((x >= dispWin.x2) || (y > dispWin.y2)) return;

should be

if ((x > dispWin.x2) || (y > dispWin.y2)) return;

Because of this, an image composed of 2x2 rectangles (or larger), scrolling across and beyond the screen, causes artifacts at the right edge.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions