Skip to content

Commit cc0d846

Browse files
authored
Merge pull request #19 from KurtE/build_fix
It was not building for me when running with current TD beta
2 parents 9117532 + b970e2d commit cc0d846

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Image.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,8 +529,8 @@ namespace tgx
529529
{
530530
drawPixel<false>(x--, y, new_color);
531531
}
532-
if (x >= x1) goto TGX_SCANFILL_SKIP;
533532
int start = x + 1;
533+
if (x >= x1) goto TGX_SCANFILL_SKIP;
534534
if (start < x1) TGX_SCANFILL_PUSH(start, x1 - 1, y, -dy); // leak on left
535535
x = x1 + 1;
536536
do

0 commit comments

Comments
 (0)