]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/image.cpp
xti fixes
[wxWidgets.git] / src / common / image.cpp
index 5192bc06d82624615a223c22b73fd72852bd5a86..d9f07d30b224365dcf606b06f0382c54d9ca0d86 100644 (file)
@@ -303,9 +303,9 @@ wxImage wxImage::ShrinkBy( int xFactor , int yFactor ) const
             }
             else
             {
-                *(target_data++) = avgRed / counter ;
-                *(target_data++) = avgGreen / counter ;
-                *(target_data++) = avgBlue / counter ;
+                *(target_data++) = (unsigned char)(avgRed / counter);
+                *(target_data++) = (unsigned char)(avgGreen / counter);
+                *(target_data++) = (unsigned char)(avgBlue / counter);
             }
         }
     }