Move the call to correct_total() to the right spot. (#72732)

* pixops/pixops.c (tile_make_weights): Move the call to
	correct_total() to the right spot. (#72732)
This commit is contained in:
Matthias Clasen 2002-02-28 18:47:38 +00:00
parent 93aef1e229
commit 3a4906e82d
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-02-28 Matthias Clasen <maclas@gmx.de>
* pixops/pixops.c (tile_make_weights): Move the call to
correct_total() to the right spot. (#72732)
Wed Feb 27 18:33:04 2002 Owen Taylor <otaylor@redhat.com>
* gdk-pixdata.c (gdk_pixdata_to_csource): Use {} not

View File

@ -1162,9 +1162,9 @@ tile_make_weights (PixopsFilter *filter, double x_scale, double y_scale, double
total += weight;
*(pixel_weights + n_x * i + j) = weight;
}
correct_total (pixel_weights, n_x, n_y, total, overall_alpha);
}
correct_total (pixel_weights, n_x, n_y, total, overall_alpha);
}
}