aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/client/imagefilters.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/imagefilters.cpp b/src/client/imagefilters.cpp
index 9c7d0035e..97ad094e5 100644
--- a/src/client/imagefilters.cpp
+++ b/src/client/imagefilters.cpp
@@ -102,7 +102,7 @@ void imageCleanTransparent(video::IImage *src, u32 threshold)
// Then repeatedly look for transparent pixels, filling them in until
// we're finished.
- for (u32 iter = 0; iter < iter_max; iter++) {
+ for (int iter = 0; iter < iter_max; iter++) {
for (u32 ctry = 0; ctry < dim.Height; ctry++)
for (u32 ctrx = 0; ctrx < dim.Width; ctrx++) {