manually fix bug where sometimes the top / bottom pixel of circle brushes would disappear

This commit is contained in:
jacob1 2014-01-07 20:46:42 -05:00
parent 3329a6bd79
commit 0d51d6bd07

View File

@ -49,6 +49,8 @@ public:
} }
} }
} }
bitmap[size.X/2] = 255;
bitmap[size.X*size.Y-size.X/2-1] = 255;
} }
} }
}; };