* Adding wrong Y to blob
This commit is contained in:
iabdalkader 2014-03-19 01:39:35 +02:00
parent fb928482b4
commit 4f6c8e5ec8

View File

@ -27,13 +27,15 @@ array_t *imlib_count_blobs(struct image *image)
if (p->x < blob->x) {
blob->x = p->x;
}
if (p->y < blob->y) {
blob->y = y;
blob->y = p->y;
}
if (p->x > blob->w) {
blob->w = p->x;
}
if (p->y > blob->h) {
blob->h = p->y;
}