Skip to content

Commit

Permalink
Fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandesign authored and jtojnar committed Aug 4, 2024
1 parent 032797a commit 6ca1c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypaint-fixed-tiled-surface.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ tile_request_end(MyPaintTiledSurface *tiled_surface, MyPaintTileRequest *request
const int ty = request->ty;

if (tx >= self->tiles_width || ty >= self->tiles_height || tx < 0 || ty < 0) {
// Wipe any changed done to the null tile
// Wipe any changes done to the null tile
reset_null_tile(self);
} else {
// We hand out direct pointers to our buffer, so for the normal case nothing needs to be done
Expand Down

0 comments on commit 6ca1c93

Please sign in to comment.