]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imagbmp.cpp
missing break in ParseFormat() (part of patch 1160117)
[wxWidgets.git] / src / common / imagbmp.cpp
index b4e8208c47e373e55098cb7bc002a8903723fc19..6e4168e0f006041308876fcaeac15d0fd31ed75f 100644 (file)
@@ -278,7 +278,7 @@ bool wxBMPHandler::SaveDib(wxImage *image,
         for ( int i = 0; i < palette_size; i++ )
         {
             // if 1BPP_BW then the value should be either 0 or 255
-            wxUint8 c = (i > 0) && (format == wxBMP_1BPP_BW) ? 255 : i;
+            wxUint8 c = (wxUint8)((i > 0) && (format == wxBMP_1BPP_BW) ? 255 : i);
 
             rgbquad[i*4] =
             rgbquad[i*4+1] =